cmdrkeen to Programmer Humor · 1 year agoThe Holy Trinity of JavaScriptimagemessage-square72fedilinkarrow-up1736arrow-down111
arrow-up1725arrow-down1imageThe Holy Trinity of JavaScriptcmdrkeen to Programmer Humor · 1 year agomessage-square72fedilink
minus-squarezqwzzle@lemmy.calinkfedilinkEnglisharrow-up9arrow-down3·edit-21 year ago=== is just == with extra steps
minus-squarethanks_shakey_snake@lemmy.calinkfedilinkarrow-up23·1 year agoIt’s actually the other way around. == has to perform type coercions as part of its equality algorithm, whereas === does not, so == has more steps.
===
is just==
with extra stepsIt’s actually the other way around. == has to perform type coercions as part of its equality algorithm, whereas === does not, so == has more steps.
It’s to be REALLY sure