Which equals operator (== vs ===) is faster?
Is there a performance benefit to replacing == with ===?
Date tested:
7 years ago
User agent:
Mozilla/5.0 (Linux; Android 6.0.1; A0001 Build/MHC19Q) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36
Test name
Executions per second
test equality
5010.1 Ops/sec
test strict equality
4994.0 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