let arr = new Array;

let arrs=[];

let arrss={};

//ES6新引入,低版本浏览器可能不支持

console.log(Array.isArray(arr))

console.log(Array.isArray(arrs))

console.log(Array.isArray(arrss))

//兼容性最好,推荐使用
console.log(Object.prototype.toString.call(arr)==='[object Array]')

console.log(Object.prototype.toString.call(arrs)==='[object Array]')

console.log(Object.prototype.toString.call(arrss)==='[object Array]')

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐