面试题系列---js如何判断一个对象是数组

Posted 程序媛...

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题系列---js如何判断一个对象是数组相关的知识,希望对你有一定的参考价值。

js如何判断一个对象是数组

1.typeof操作符

利用typeof除了array和null判断为object外,其他的都可以正常判断

2.instanceof操作符

var arr = [1,2,3,1];
console.log(arr instanceof Array); // true

var fun = function(){};
console.log(fun instanceof Function); // true

3.对象的constructor 属性

var arr = [1,2,3,1];
console.log(arr.constructor === Array); // true
 
var fun = function(){};
console.log(arr.constructor === Function); // true

4.使用 Object.prototype.toString 来判断是否是数组

Object.prototype.toString.call( [] ) === ``\'[object Array]\'` `// true` Object.prototype.toString.call( ``function``(){} ) === ``\'[object Function]\'` `// true

这里使用call来使 toString 中 this 指向 obj。进而完成判断 

5.Array.isArray()

Array.isArray([])  ``// true

6.使用 原型链 来完成判断

[].__proto__ === Array.prototype ``// true` `var` `fun = ``function``(){}``fun.__proto__ === Function.prototype ``// true

以上是关于面试题系列---js如何判断一个对象是数组的主要内容,如果未能解决你的问题,请参考以下文章

js面试题

面试题-如何判断一个对象是不是数组类型

前端基础面试题:如何判断对象是否具有某属性?遍历数组的方法有哪些?

js面试题知识点全解(一原型和原型链1)

每日三道面试题,通往自由的道路5——JVM

面试题系列---vue中watch原理