标签: javascript type-conversion type-coercion
所以我一直在研究类型强制,我得到了基础知识,比如:
true + 0 = 1; false + 0 = 0;
在控制台乱搞时我注意到了
({}) + true = "[Object Object]true"; {} + true = 1;
我的问题是为什么{}在[Object Object]时变为() 而不是刚刚在没有true的情况下添加到()?
{}
[Object Object]
()
true