Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
What is the difference between == and === in JavaScript? I have also seen != and !== operators. Are there more such operators?
What is the difference between | |||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
=== and !== are strict comparison operators:
| |||
|
feedback
|
|
Take a look here: http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html The 3 equal signs mean "equality without type coercion". Using the triple equals, the values must be equal in type as well.
| |||||||||||
feedback
|