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?

link|improve this question
1  
feedback

closed as exact duplicate by AnthonyWJones, Jeff Atwood Feb 7 '09 at 12:04

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.

2 Answers

up vote 95 down vote accepted

=== and !== are strict comparison operators:

JavaScript has both strict and type-converting equality comparison. For strict equality the objects being compared must have the same type and:

  • Two strings are strictly equal when they have the same sequence of characters, same length, and same characters in corresponding positions.
  • Two numbers are strictly equal when they are numerically equal (have the same number value). NaN is not equal to anything, including NaN. Positive and negative zeros are equal to one another.
  • Two Boolean operands are strictly equal if both are true or both are false.
  • Two objects are strictly equal if they refer to the same Object.
  • Null and Undefined types are == (but not ===).

Comparison Operators - MDC

link|improve this answer
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.

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
link|improve this answer
3  
Thanks for the clear answer! I guess if compared to C# the == would also be == and === would translate to .Equals() – Koen Zomers Feb 1 '11 at 13:02
6  
great answer!!! (3 exclamation marks to make it to the 15 chars) – Michel Apr 6 '11 at 10:08
best answer, defiantly most helpful. – Waltzy Nov 18 '11 at 14:19
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.