这个对象是强制转换还是数组转换?

时间:2015-10-20 11:19:03

标签: javascript arrays object

我知道:

console.log({}.length);
> undefined

console.log([].length);
> 0

console.log([] + {});
> [object Object]

但是,为什么([] + {})[object Object]

console.log(([] + {}).length);
> 15

为什么......我无法弄清楚

1 个答案:

答案 0 :(得分:1)

我的控制台给了我这个:

typeof []
"object"
typeof {}
"object"
typeof [] + {}
"object[object Object]"
typeof ([] + {})
"string"

上一次console.log的长度是因为它是一个字符串。