JPDev@programming.dev to Programmer Humor@programming.dev · 2 years ago===programming.devimagemessage-square77fedilinkarrow-up1650arrow-down117
arrow-up1633arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 2 years agomessage-square77fedilink
minus-squareSzethFriendOfNimi@lemmy.worldlinkfedilinkarrow-up120·edit-22 years agoSo in JavaScript there’s the assignment = and the comparator is == Since there’s no types JS will do implicit conversion before comparison when using == in a case like this if(false == '0'){ //this is true } But with === it doesn’t. It means literally compare these if(false === '0'){ //this is false }else{ //so this will execute instead } But this, however, will var someState = false; if(someState === false){ //this is true }
minus-squarerunswithjedi@lemmy.worldlinkfedilinkarrow-up64·2 years agoBest answer. Thanks Lemmyoverflow.
So in JavaScript there’s the assignment
and the comparator is
Since there’s no types JS will do implicit conversion before comparison when using == in a case like this
But with === it doesn’t. It means literally compare these
But this, however, will
Best answer. Thanks Lemmyoverflow.
Np. closed as duplicate