Array.isArray(arr)
Object.prototype.toString.call(arr) === '[object Array]'
arr instanceof Array
arr.constructor === 'Array'