+ 2
JS help
What this mean in JS? “=“ “==“ “===“ *quotation marks mean nothing
2 Answers
+ 6
You have a very good question, "=" takes a variable or something like that, "==" this sign means "is equal to either", "===", this sign means 'equals'
↓↓↓ :)
https://www.codecademy.com/en/forum_questions/558ea4f5e39efed371000508
+ 3
well, all the 3 are different , the first one = assign value from right side to left
the == compares both side values
the === also compares both side values but it also checks for there types such as string or number