HTML Developer Question:
Download Job Interview Questions and Answers PDF
Tell me what is the difference between == and === ?
Answer:
The 3 equal signs mean "equality without type coercion". Using the triple equals, the values must be equal in type as well.
== is equal to
=== is exactly equal to (value and type)
0==false // true
0===false // false, because they are of a different type
1=="1" // true, auto type coercion
1==="1" // false, because they are of a different type
== is equal to
=== is exactly equal to (value and type)
0==false // true
0===false // false, because they are of a different type
1=="1" // true, auto type coercion
1==="1" // false, because they are of a different type
Download HTML Developer Interview Questions And Answers
PDF
Previous Question | Next Question |
Explain me what are some of the online tools and resources you use when you have a problem? Where do you go to ask questions? | Do you know what are “web workers”? |