Difference between === operator == operator - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-01T18:48:32Z http://stackoverflow.com/feeds/question/856230 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/856230/difference-between-operator-operator -1 Difference between === operator == operator [closed] adamantium 2009-05-13T05:36:08Z 2009-06-23T04:33:01Z <p>What is the difference between === operator and == operator in JavaScript??</p> http://stackoverflow.com/questions/856230/difference-between-operator-operator/856238#856238 8 Answer by Jeffrey04 for Difference between === operator == operator Jeffrey04 2009-05-13T05:39:04Z 2009-05-13T05:39:04Z <p>=== 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</p> http://stackoverflow.com/questions/856230/difference-between-operator-operator/856241#856241 2 Answer by Rahul for Difference between === operator == operator Rahul 2009-05-13T05:40:04Z 2009-05-13T05:40:04Z <p>Here's an explanation of the different equality operators: <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Operators/Comparison%5FOperators" rel="nofollow">equality operators</a></p> http://stackoverflow.com/questions/856230/difference-between-operator-operator/856244#856244 4 Answer by womp for Difference between === operator == operator womp 2009-05-13T05:42:22Z 2009-05-13T05:42:22Z <p>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,</p> <p>"12345" == 12345</p> <p>will return true in javascript.</p> <p>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.</p>