676
=== (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] SzethFriendOfNimi@lemmy.world 129 points 6 months ago* (last edited 6 months ago)

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

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
}
this post was submitted on 25 Jan 2024
676 points (97.6% liked)

Programmer Humor

18872 readers
825 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS