判断是否为数组的方法

突然遇到判断是否为数组的方法 有点遗忘了 网上有很多 自己记录一下

let arr = [];

console.log(123, Array.isArray(arr));  // true

console.log(234, arr instanceof Array); // true

console.log(345, Object.prototype.toString.call(arr)); // true

你可能感兴趣的:(javascript)