JS中判断数据类型的方式(已知8种)
2021了,这些判断方式你都知道吗
let arr = new Array();
- typeof
常见的判断类型的方式,但是对于引用类型,除了function,其他的都返回object,不是特别精确
image.png
- instanceof
这种方式的本质是根据原型链进行判断
image.png
- Symbol.hasIntance
其实当我们使用instanceof时,其深层的工作原理就是使用Symbol.hasInstance来进行判断。 即,在ES6中,instanceof操作符会使用Symbol.hasInstance函数来确定关系
image.png
- isPrototypeOf
每个Object都有一个基本的方法
image.png
-
数组专用 isArray
image.png -
Object.prototype.toString.call()
将数据转换为字符串的形式
image.png
-
constructor
image.png -
arr.__ proto __ === Array.prototype
image.png
网友评论