Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120
Windows
Desktop
one year ago
Test name Executions per second
test equality 4176.4 Ops/sec
test strict equality 4270.2 Ops/sec
Tests:
  • test equality

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

     
        var fun = () => {
            for (let i = 0; i < 100000; i++) {
                if (i === 95653) {
                    return true;
                }
            }
        };
        fun();