类数组与最大安全数
a = {
1:1,
2:2,
c:3,
length:4
}
console.log(_.isArrayLike(a));//true_.isArrayLike = function(collection){
var length = collection.length;
return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
}Last updated