Script Preparation code:
AخA
 
var tipo_el = 'tipo4';
var arrPermision = ['tipo1', 'tipo2', 'tipo3', 'tipo4', 'tipo5'];
Tests:
  • switch case

     
    switch(tipo_el){
      case 'tipo1':
      case 'tipo2':
      case 'tipo3':
      case 'tipo4':
      case 'tipo5':
        console.dir('tipo aceitavel');
        break;
    }
  • if ||

     
    if(tipo_el == 'tipo1' || tipo_el == 'tipo2' || tipo_el == 'tipo3' || tipo_el == 'tipo4' || tipo_el == 'tipo5'){
      console.dir('tipo aceitavel');
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    switch case
    if ||

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36
Chrome 97 on Windows
View result in a separate tab
Test name Executions per second
switch case 103546.7 Ops/sec
if || 85476.9 Ops/sec