七种内置类型
null, undefined, boolean, number, string, object, symbol
typeof null === ‘object‘ // true
null 是 typeof 是 object 的唯一的假值
typeof function 会返回 ‘function‘
使用 typeof x !== ‘undefined‘ 比直接判断 x 更加安全,因为不会引发 reference error
时间: 2024-12-15 05:47:57