What is the difference between === operator and == operator in JavaScript??
|
1
|
|||
|
closed as exact duplicate by Canavar, Cerebrus, David, devio, Paolo Bergantino May 13 at 5:50 |
|
|
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. |
||
|
|
|
|
=== 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 |
||
|
|
|
|
Here's an explanation of the different equality operators: equality operators |
||
|
|
