I came across the following and was unable to grasp the reason, can anyone explain please?
var foo = [0];
console.log(foo == !foo); // true
console.log(foo == foo); // true
|
I came across the following and was unable to grasp the reason, can anyone explain please?
|
|||||||||||||||
|
|
The second comparison is simple to explain: The first one, however, is a bit tricky:
According to MDN, on comparisons with the equality operator
I know this explanation sounds superficial. It's actually much more complicated than that, but the basic steps are the ones I listed above. You can see the details on the ECMA-262 specification, particularly on sections 9 and 11.9. |
|||||
|
|
You should use "===" and "!==" instead of "==" and "!=" More explanations there: JavaScript === vs == : Does it matter which "equal" operator I use? http://net.tutsplus.com/tutorials/javascript-ajax/the-10-javascript-mistakes-youre-making/ |
|||