admin管理员组文章数量:1345048
The following parisons all return false
in javascript:
[]===[]
[]==[]
{}==={}
{}=={}
[0]===[0]
[0]==[0]
However the following return true
:
[0]=='0'
[0]==0
[]==false //(and all other == that were exampled above)
What is the reason for this? Especially the difference between [0]!=[0]
and [0]==0
Fiddle: /
The following parisons all return false
in javascript:
[]===[]
[]==[]
{}==={}
{}=={}
[0]===[0]
[0]==[0]
However the following return true
:
[0]=='0'
[0]==0
[]==false //(and all other == that were exampled above)
What is the reason for this? Especially the difference between [0]!=[0]
and [0]==0
Fiddle: http://jsfiddle/vnBVj/
Share Improve this question edited Dec 13, 2012 at 12:41 nozzleman 9,6694 gold badges40 silver badges60 bronze badges asked Dec 13, 2012 at 9:18 rickyduckrickyduck 4,08414 gold badges61 silver badges95 bronze badges3 Answers
Reset to default 9This is due to the confusing rules, how javascript does type coercion. You can read about this in §11.9.3 of the EcmaScript 5 spec.
Two Objects (which Arrays are too) are never equal, thus all your parisons in the first block yield false (§11.9.3.1.c.vi)
The second block is more difficult:
First thing to know is, that ==
uses type coercion to pare the operands.
When a parison has a Boolean involved, this one is first coerced to a number.
[]==false
[]==0
after that Objects are coerced to their primitive values by calling Object.prototype.toString
"" == 0
Then the string is coereced to to a number (""
bees 0
)
0 == 0
yielding true. By applying the same rules, you can see why your other examples also yield true.
Note that ===
never causes type coercion, but checks for correct types first and yields false if they are not equal! Only if the types are equal, it pares the actual values. So this method of parison is far more reliable than ==
.
All the example to result in false
can easily be explained by the fact, that in case you are paring objects (and arrays are special objects), JavaScript will pare object references. As you are creating new objects with all those parisons, all will point to different objects, hence the result will be false
.
As for [0]=='0'
: As soon as one operand is a string, the other one gets converted to string as well. The string conversion of [0]
is '0'
, thus the result is true.
The same goes for one operand being a number or a boolean, which explains the last two parisons' results.
For more information have a look at the respective MDN page.
Citing the important part:
Equal (==)
If the two operands are not of the same type, JavaScript converts the operands then applies strict parison. If either operand is a number or a boolean, the operands are converted to numbers if possible; else if either operand is a string, the other operand is converted to a string if possible. If both operands are objects, then JavaScript pares internal references which are equal when operands refer to the same object in memory.
When you use litteral array/object initialisation, even if it is empty, you create a new object and it's reference is returned. So when you pare them, you pare the value of the reference of the objects you created.
Your other examples return true because you're paring different types of variables, so, the objects/arrays are transtyped to be parable with them.
本文标签: castingWhy does(and others) return false in javascriptStack Overflow
版权声明:本文标题:casting - Why does [] === [] (and others) return false in javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743710234a2525804.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论