typeof(NaN) === 'number' // true typeof(Infinity) === 'number' // true
js 类是函数
typeof class类 === ‘function’
【考题】typeof 能判断哪些类型
- undefined string number boolean symbol
- object ( null 是 object )
- function
typeof(NaN) === 'number' // true typeof(Infinity) === 'number' // true
js 类是函数
typeof class类 === ‘function’
【考题】typeof 能判断哪些类型