Math, asked by Aviral2013, 1 year ago

Difference between single equal to and double equal to in if condition

Answers

Answered by taranjs123
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