const arr = []
// 1. 最简单 ES5+
Array.isArray(arr)
// 2. 兼容性好的方法,也很准确
Object.prototype.toString.call(arr) === '[object Array]'
{}.__proto__.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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。