2、typeof 运算符
2017-07-20 本文已影响0人
咖啡加糖a
1、typeof undefined // undefined
2、typeof 'abx' // string
3、typeof 123 // number
4、typeof true // boolean
5、typeof {} // object
6、typeof [ ] // object
7、typeof null // object
8、typeof console.log // function
typeof 只能区分值类型,引用类型中只能区分函数