摘要: Array.isArray(arr) Array.prototype.isPrototypeOf(arr) arr.constructor==Array 阅读全文
posted @ 2018-07-02 14:52 花开半夏shen 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2018-07-02 14:27 花开半夏shen 阅读(133) 评论(0) 推荐(0) 编辑