标签:
console.log(isArray([]));
function isArray(arr){
if(typeof Array.isArray === ‘undefined‘){
Array.isArray = function(arr){
return Object.prototype.toString.call(arr) === ‘[object Array]‘;
}
}
return Array.isArray(arr);
}
标签:
原文地址:http://www.cnblogs.com/zfdai/p/5537168.html