Tests:
  • test equality

    AخA
     
    var n = 0;
    while(true) {
        n += (n != null ? 1 : 0)
        if(n===100000) 
            break;
    }
  • test strict equality

     
    var n = 0;
    while(true) {
        n += (n !== null && n !== undefined ? 1 : 0)
        if(n===100000) 
            break;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    test equality
    test strict equality

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:134.0) Gecko/20100101 Firefox/134.0
Firefox 134 on Mac OS X 10.15
View result in a separate tab
Test name Executions per second
test equality 15251.4 Ops/sec
test strict equality 14567.5 Ops/sec