码迷,mamicode.com
首页 > 编程语言 > 详细

原生js 判断变量是一个数组

时间:2019-01-05 19:42:56      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:cto   efi   ice   tor   obj   prot   call   个数   eof   


const arr = []
// 1. 最简单 ES5+
Array.isArray(arr)

// 2. 兼容性好的方法,也很准确 
Object.prototype.toString.call(arr) === ‘[object Array]‘

// 3. 这个也不错 
arr.constructor.name === ‘Array‘

// 4. instance  不好用 
console.log(a instanceof Array) // true 
console.log(a instanceof Object) // true 

// 5 找个数组独有的方法 
arr.splice !== undefined

原生js 判断变量是一个数组

标签:cto   efi   ice   tor   obj   prot   call   个数   eof   

原文地址:https://www.cnblogs.com/lovellll/p/10225588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!