判断对象是不是数组

1.方法一
Array.isArray([1, 2, 3]); // true

2.方法二
Object.prototype.toString.call([1,2,3]); //[object Array]

你可能感兴趣的:(判断对象是不是数组)