Difference between === operator == operator - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-01T18:48:32Zhttp://stackoverflow.com/feeds/question/856230http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/856230/difference-between-operator-operator-1Difference between === operator == operator [closed]adamantium2009-05-13T05:36:08Z2009-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#8562388Answer by Jeffrey04 for Difference between === operator == operatorJeffrey042009-05-13T05:39:04Z2009-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#8562412Answer by Rahul for Difference between === operator == operatorRahul2009-05-13T05:40:04Z2009-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#8562444Answer by womp for Difference between === operator == operatorwomp2009-05-13T05:42:22Z2009-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>