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