Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36
Chrome 90
Windows
Desktop
4 years ago
Test name Executions per second
if 6022.5 Ops/sec
ternary 3864.7 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;
    }