I'm using JSLint to check if the JavaScript source code complies with the encoding rules, and it is returning many suggestions for replacing ==
(two equal signs) with ===
(three equal signs) when doing things like comparing idlol.value.length == 0
within a if
conditional.
Is there a performance benefit in replacing ==
with ===
?
If no type conversion occurs, will there be a performance gain relative to ==
?