Run details:
Mozilla/5.0 (Linux; Android 10; Redmi Note 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.120 Mobile Safari/537.36
Chrome Mobile 91
Android
Mobile
3 years ago
Test name Executions per second
if/if 613024.3 Ops/sec
if/or 607912.0 Ops/sec
if/or double equal 605860.2 Ops/sec
Script Preparation code:
AخA
 
var test = 'test5'
Tests:
  • if/if

     
    if (test === 'test1') {
      return true;
    }
    if (test === 'test2') {
      return true;
    }
    if (test === 'test3') {
      return true;
    }
    if (test === 'test4') {
      return true;
    }
    if (test === 'test5') {
      return true;
    }
  • if/or

    x
     
    if (test === 'test1' || test === 'test2' || test === 'test3' || test === 'test4'|| test === 'test5') return true;
  • if/or double equal

     
    if (test == 'test1' || test == 'test2' || test == 'test3' || test == 'test4'|| test == 'test5') return true;