考虑以下代码:
typeof null == 'object'//returns true
考虑一下这段代码:
typeof null == '' //returns false
为什么?
答案 0 :(得分:8)
<强> The history of “typeof null” 强>
一个长期存在的错误,自JS开始以来。
答案 1 :(得分:-2)
typeof(null)返回“object”
和
typeof('') returns "string"!