判断某变量是否为数组数据类型

先贴出最简略的方法总结:

方法一:Object.prototype.toString.call(arr) === '[object Array]' 则arr为数组;

方法二:Array.isArray(arr)  === true 则arr为数组; (API不存在时MDN上推荐使用方法一的原理创建PolyFill)

方法三:arr instanceof Array === true 则arr为数组;

方法四:arr.sort === Array.prototype.sort 则arr为数组;

方法五:arr.constructor === Array 则arr为数组; (判断不准可能不准,原因见下面文章链接聊聊Array中的坑)

 

简单解释这个问题的由来:

1.在JavaScript中,除了5种原始数据类型(number, string, boolean, null, undefined)之外,其他所有的都是对象, 且typeof方法无法区分数组与对象,

2.对象或者伪数组(类数组)对象不能使用数组的方法,使用前需要将数组转成真正的数值。

 

更多知识点拓展参考地址 :

 

JavaScript:Object.prototype.toString方法的原理https://www.cnblogs.com/ziyunfei/archive/2012/11/05/2754156.html

聊聊Array中的坑:https://segmentfault.com/a/1190000017956550 

JavaScrip中数组与伪数组的区别: http://www.cnblogs.com/chenpingzhao/p/4764791.html  

JavaScript深入之类数组对象与arguments :https://github.com/mqyqingfeng/Blog/issues/14

 

 

 

 

你可能感兴趣的:(判断某变量是否为数组数据类型)