我知道:
console.log({}.length);
> undefined
console.log([].length);
> 0
console.log([] + {});
> [object Object]
但是,为什么([] + {})
是[object Object]
console.log(([] + {}).length);
> 15
为什么......我无法弄清楚
答案 0 :(得分:1)
我的控制台给了我这个:
typeof []
"object"
typeof {}
"object"
typeof [] + {}
"object[object Object]"
typeof ([] + {})
"string"
上一次console.log的长度是因为它是一个字符串。