typeof {} === 'object' // true
typeof 'a' === 'string' // true
typeof 1 === number // true
// 但是....
typeof [] === 'object' // true
如果要判断一个变量var是否是数组,你需要使用Array.isArray(var)。
上一篇:谨慎对待比较运算
下一篇:闭包