js判断是否为数组

2020-05-15  

var array = [1, 2, 3];

console.log(array instanceof Array); //父子页面数组赋值,可能无效
console.log(array.constructor == Array); //父子页面数组赋值,可能无效
console.log(array.__proto__.constructor == Array); //有兼容问题,早期 IE 浏览器 js 对象没有 __proto__ 定义
console.log(Object.prototype.toString.call(array) == '[object Array]'); //通用解决办法

console.log(typeof array); //可以用来判断基本类型,此处返回 object

 

控制台打印结果:

true
true
true
true
object

 

参考:

https://www.cnblogs.com/ysk123/p/9995920.html

 

ConstXiong 备案号:苏ICP备16009629号-3