JS判断数组类型的方法 Array.isArry()方法 ,返回布尔值console.log([] instanceof Array)console.log([].constructor == Array)function isArray(arr){ return Object.prototype.toString.call(arr) == “[object Array]” }