vote up -1 vote down star
1

What is the difference between === operator and == operator in JavaScript??

flag

closed as exact duplicate by Canavar, Cerebrus, David, devio, Paolo Bergantino May 13 at 5:50

3 Answers

vote up 4 vote down check

If you compare two items with ==, then javascript attempts to convert the types of the objects so that it gets equivalent types and then compares the value. So for example,

"12345" == 12345

will return true in javascript.

If you use the strict equivalency operator, ===, then no type conversion is done. The above statement would be false, because one is a string and the other is an integer.

link|flag
vote up 2 vote down

Here's an explanation of the different equality operators: equality operators

link|flag
vote up 8 vote down

=== checks for the data type besides the value, for example if you compare 1===true then it should return false but 1==true returns true

link|flag

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