一、 数据类型的检测
四种数据类型检测
- typ
- 缺点检测不了对象和数组类型
- instanceof
- 找的话最后有很多找到原型链上
- constructor
- 原型链上容易发生拓展,
- Object.prototype.toString.call(xxxx)
- 最常用,检测函数里面的this
四种数据类型检测
- typ
- 缺点检测不了对象和数组类型
- instanceof
- 找的话最后有很多找到原型链上
- constructor
- 原型链上容易发生拓展,
- Object.prototype.toString.call(xxxx)
- 最常用,检测函数里面的this