最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

casting - Why does [] === [] (and others) return false in javascript? - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

3 Answers 3

Reset to default 9

This 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.

发布评论

评论列表(0)

  1. 暂无评论