标签:eof efi asc rip number javascrip cti 类型 string
七种内置类型
null, undefined, boolean, number, string, object, symbol
typeof null === ‘object‘ // true
null 是 typeof 是 object 的唯一的假值
typeof function 会返回 ‘function‘
使用 typeof x !== ‘undefined‘ 比直接判断 x 更加安全,因为不会引发 reference error
标签:eof efi asc rip number javascrip cti 类型 string
原文地址:http://www.cnblogs.com/07akioni/p/7406714.html