I'm messing around in console and saw the following:
>>> []
[]
>>> Array.prototype
[]
>>> [] == Array.prototype
false
>>> [] === Array.prototype
false
Can anyone explain this behavior? (Sounds like a good candidate for wtfjs)
|
I'm messing around in console and saw the following:
Can anyone explain this behavior? (Sounds like a good candidate for wtfjs)
| |||
|
feedback
|
|
In Javascript, == on arrays is pointer equality, ie only true if the both arrays are the same object. If arrays aren't pointer equal, then storing to one won't affect the other. | |||||||||||||||
feedback
|
| |||||
feedback
|
|
Essentially this is an extension of Raph Levien's answer but I could not fit it in a comment. I think it's illuminating to note that
Thus the fact that
becomes expected. Reading the MDN Comparison Operators yields the explanation as to why all four situations evaluate to false:
| |||
|
feedback
|
That is to say, the toString method of the objects is identical. Of course, for Array.prototype.toString() (which is effectively what the second line is calling), the this object for the toString object contains no array-like properties, and hence gives | |||
|
feedback
|
true. jsfiddle.net/HsgFZ – user113716 Jan 18 '11 at 4:52false... – sth Jan 18 '11 at 4:56