Possible Duplicate:
Javascript === vs ==
What's the diff between "===" and "==" ? Thanks!
What's the diff between "===" and "==" ? Thanks! |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
'===' means equality without type coersion. In other words, if using the triple equals, the values must be equal in type as well. e.g.
Source: http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html |
|||
|
|
The Equality Operator (==) The equality operator (==) checks whether two operands are the same and returns true if they are the same and false if they are different. The Identity Operator (===) The identity operator checks whether two operands are “identical”. These rules determine whether two values are identical:
|
|||
|
|
|
The === operator means "is exactly equal to," matching by both value and data type. The == operator means "is equal to," matching by value only. |
|||
|
|
|
It tests exact equality of both value and type.
|
|||
|
|
|
In a nutshell "===" tests for the equality of value AND of type: From here: |
|||
|
|