JS help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

JS help

What this mean in JS? “=“ “==“ “===“ *quotation marks mean nothing

19th Dec 2017, 3:04 PM
JOHNTHEBUN
JOHNTHEBUN - avatar
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
19th Dec 2017, 3:09 PM
James16
James16 - avatar
+ 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
19th Dec 2017, 3:39 PM
Ashwaghosh Sadanshiv
Ashwaghosh Sadanshiv - avatar