摘要:
Array.isArray(arr) Array.prototype.isPrototypeOf(arr) arr.constructor==Array 阅读全文
摘要:
Math.max.apply(this,[120,129,56,34,98]) //129 Math.max.call(this,120,129,56,34,98) //129 Math.min.apply(this,[120,129,56,34,98]) //34 Math.min.call(this,120,129,56,34,98) //34 阅读全文