Tests:
  • test equality

    AخA
     
        var fun = () => {
            for (let i = 0; i < 1000000; i++) {
                if ((i + 'yes') == 95653) {
                    return true;
                }
            }
        };
        fun();
  • test strict equality

     
        var fun = () => {
            for (let i = 0; i < 1000000; i++) {
                if ((i + 'yes') === 95653) {
                    return true;
                }
            }
        };
        fun();
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: 26 days ago)
Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Chrome 126 on Chrome OS 14541.0.0
View result in a separate tab
Test name Executions per second
test equality 5.9 Ops/sec
test strict equality 17.0 Ops/sec