因此,我在阅读有关JavaScript中的调用表达式时正在使用控制台,并且发现null * null的值为0。问题是使用'==='null时不等于0,但是我的代码来自控制台证明不是。有人知道为什么会这样吗?
null === 0 //false
null * 0 //false(this makes sense because anything * 0 = 0)
null * null // 0 (this however does not make sense because earlier we proved 0 is not null)