console.log({}==0) //false console.log([]==0) //true
这个是什么原理,到底调用了什么方法?
这里 toString 了。
toString
[].toString() 是空字符串 ''(因为数组直接 toString 就相当于用逗号做 join),'' == 0 成立。
[].toString()
''
join
'' == 0
https://developer.mozilla.org...
2.1m questions
2.1m answers
60 comments
57.0k users