判断对象是不是数组

1.方法一
Array.isArray([1, 2, 3]); // true
【判断对象是不是数组】2.方法二
Object.prototype.toString.call([1,2,3]); //[object Array]

    推荐阅读