Tests:
  • test greater than

    AخA
     
    var n = 0;
    while (true) {
        n++;
        if (n > 9999) 
            break;
    }
  • test strict equality

     
    var n = 0;
    while (true) {
        n++;
        if (n === 100000) 
            break;
    }
  • test truthy equality

     
    var n = 100000;
    while (true) {
      n--;
      if (!n)
        break;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    test greater than
    test strict equality
    test truthy equality

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0
Firefox 106 on Windows
View result in a separate tab
Test name Executions per second
test greater than 229269.4 Ops/sec
test strict equality 23596.7 Ops/sec
test truthy equality 25405.8 Ops/sec