Difference between single equal to and double equal to in if condition
Answers
Answered by
0
Answer:
Step-by-step explanation:
So a = b means "set a equal to b , and return a " whereas a == b means "return true if a and b are equal". ... In those languages, == means "convert to same type and compare" whereas === means "return true only if they are the same type and same value."
Similar questions