js怎么判断是否是数组的六种方法小结
短信预约 -IT技能 免费直播动态提醒
instanceof
主要用来判断某个实例是否属于某个对象所在的原型链上,因此并不能完全分辨出到底是否是数组
let a = [1, 2, 3];
console.log(a instanceof Array); // true
console.log(a instanceof Object); // true
//从此我们可以看出a既是数组,也是对象
let userInfo = { userName: "zhangsan" };
console.log(userInfo instanceof Array); // false
console.log(userInfo instanceof Object); // true
//userInfo只是对象,而不是数组
Array.isArray()
Array.isArray([1,2]); // true
Array.isArray({name:'zs'}); // false
constructor构造函数
let a = [1,2];
a.__proto__.constructor === Array // true
a.__proto__.constructor === Object // false
a.constructor === Array // true
a.constructor === Object // false
toString
Object.prototype.toString.call([1,2]) // '[object Array]'
Object.prototype.toString.call({name:'zs'}) // '[object Object]'
isPrototypeOf
Array.prototype.isPrototypeOf([1,2]) // true
Array.prototype.isPrototypeOf({name:'zs'}) // false
getPrototypeOf
Object.getPrototypeOf([1,2]) === Array.prototype // true
Object.getPrototypeOf({name:'zs'}) === Array.prototype // false
到此这篇关于js怎么判断是否是数组的六种方法小结的文章就介绍到这了,更多相关js 判断是否是数组内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341