原生js 判斷變數是一個陣列

huahuadavids發表於2019-02-16
const arr = []
// 1. 最簡單 ES5+
Array.isArray(arr)

// 2. 相容性好的方法,也很準確 
Object.prototype.toString.call(arr) === `[object Array]`

// 3. 這個也不錯 
arr.constructor.name === `Array`

// 4. instance  不好用 
console.log(a instanceof Array) // true 
console.log(a instanceof Object) // true 

// 5 找個陣列獨有的方法 
arr.splice !== undefined

相關文章