Which equals operator (== vs ===) is faster?
Is there a performance benefit to replacing == with ===?
Date tested:
2 years ago
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0
Test name
Executions per second
test equality
13543.6 Ops/sec
test strict equality
13435.6 Ops/sec
Benchmark definition (click to collapse):
Tests:
test equality
var n = 0; while(true) { n++; if(n==100000) break; }
AخA
var
n
=
0
;
while
(
true
) {
n
++
;
if
(
n
==
100000
)
break
;
}
test strict equality
var n = 0; while(true) { n++; if(n===100000) break; }
var
n
=
0
;
while
(
true
) {
n
++
;
if
(
n
===
100000
)
break
;
}
Open this result on MeasureThat.net