Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0
Firefox 95
Windows
Desktop
3 years ago
Test name Executions per second
if else 741655.5 Ops/sec
If and 629939.5 Ops/sec
Script Preparation code:
x
 
var count = 0;
Tests:
  • if else

     
    for (var i = 0; i < 1000; i++) {
        if (i > 500) {
            count=+2;
        } else {
             count=+1;
        }
    }
  • If and

     
    for (var i = 0; i < 1000; i++) {
        if (i > 500) {
           count=+1;
        } 
      count=+1;
    }