Expert Developer JavaScript Question:
What is the difference between == and === ?
Answer:
'==' evaluates equality of the value, while '===' evaluates equality of type and value.
Previous Question | Next Question |
How to manage exception handling in Javascript? | What do mean by NULL in JavaScript? |