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

判断是否是一个数组?

时间:2018-07-12 13:09:58      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:var   int   ber   span   size   comm   pretty   rip   com   

1. instanceof

var a = {
    "name":‘suonidfahao‘,
    "job": ‘webEnginner‘,
}   
var b = [1,2,4,4];
console.log(a instanceof Array); //false
console.log(b instanceof Array); //true

2.Array.isArray(ie9以上支持)

Array.isArray([1, 2, 3]);  // true
Array.isArray({foo: 123}); // false
Array.isArray(‘foobar‘);   // false
Array.isArray(undefined);  // false

3.原型链:constructor

var list = [1,2,3,4,5];
console.log(list.constructor === Array); //true

判断是否是一个数组?

标签:var   int   ber   span   size   comm   pretty   rip   com   

原文地址:https://www.cnblogs.com/duanzhange/p/9297937.html

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