cmdrkeen@programming.dev to Programmer Humor@programming.dev · 2 years agoThe Holy Trinity of JavaScriptprogramming.devimagemessage-square71fedilinkarrow-up1730arrow-down111
arrow-up1719arrow-down1imageThe Holy Trinity of JavaScriptprogramming.devcmdrkeen@programming.dev to Programmer Humor@programming.dev · 2 years agomessage-square71fedilink
minus-squarezqwzzle@lemmy.calinkfedilinkEnglisharrow-up9arrow-down3·edit-22 years ago=== is just == with extra steps
minus-squarethanks_shakey_snake@lemmy.cacakelinkfedilinkarrow-up23·2 years 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