This question already has answers here:
Objects and arrays addition
                            
                                (4个答案)
                            
                    
                4年前关闭。
        

    

我知道:

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

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

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


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

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


为什么...我不知道

最佳答案

我的控制台给了我这个:

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


您最后一个console.log的长度是因为它是一个字符串。

关于javascript - 该对象是类型转换还是数组类型转换? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33235269/

10-08 23:20