js 小知识点
1.typeof 返回类型
number 、string、object、boolean、undefined、function、symbol(ES6新增)
number:
typeof(NaN) NaN在js中代表的是非数字,但它本身是一个数字类型
undefined:
typeof(undefined)
typeof(a) a是不存在的变量
object:
typeof(Array())
typeof(null)
typeof(window)
function:
typeof(Array) Array本身是js内建的一个构造函数,没有初始化的时候它就是一个函数
typeof(Date)