▲ Should I use === or == equality comparison operator in JavaScript? at bytearcher.com▼25 up and 2 down, posted by bytearcher 3156 days ago 6 comments
monotype 3145 days ago. link 1 point ▲ ▼No reason to use === in cases like name == 'joe' or someList.length == MAX_LENGTH
ilyavf 3138 days ago. link 1 point ▲ ▼Why would you recommend this? There is a whole bunch of logic being invoked when you use non-strict comparison, so performance is one of the reasons.