js检测数组的4种方法

定义一个数组:

var arr = [1,2,3];
typeof arr;   //object

可以发现用typeof只能测出arr是一个对象,因为类型操作符typeof返回值有6种:number,string,boolean,object,undefined和function。
我总结了4种方法检测数组:

1、instanceof
arr instanceof Array;    //true
2、isArray
Array.isArray(arr);      //true
3、constructor
arr.constructor === Array;    //true
4、由于在iframe中创建的Array并不共享prototype,此时可以:
function isArray(obj){
    return Object.prototype.toString.call(obj) === '[object Array]';
}

isArray(arr);            //true
    原文作者:JokerPeng
    原文地址: https://www.jianshu.com/p/bc314b7794b8
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞