vote up 1 vote down star

What is the difference between == and === in JavaScript? I have also seen != and !== operators. Are there more such operators?

flag
Duplicate of: stackoverflow.com/questions/359494/… – AnthonyWJones Feb 7 at 12:00

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

3 Answers

vote up 7 vote down check

=== 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|flag
vote up 5 vote down

Take a look here: http://longgoldenears.blogspot.com/2007/09/triple-equals-in-javascript.html

The 3 equal signs mean "equality without type coersion". 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 coersion
1==="1"    // false, because they are of a different type
link|flag
vote up 2 vote down

Asked Before :

http://stackoverflow.com/questions/359494/javascript-vs

link|flag

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