执行以下操作时,我得到这些输出
var t = {} + {}; // Alerts [object Object][object Object]
t = {} + 1 //Alerts [object Object]1
t = {} + "hello" //Alerts [object Object]hello
t = {} + function(){} //Alerts [object Object]function(){}
t = {} + [] //Alerts [object Object]
仅在最后一种情况下,它[Object object]
不应该也显示警报[object Object][object Object]
吗?
在 Firefox12.0 中测试。