摘要: // find() 返回符合条件的数组项,如果没有返回undefined Array.prototype.myFind = function(callback){ for(let i=0;i<this.length;i++){ if(callback(this[i], i)){ return thi 阅读全文
posted @ 2020-08-12 14:45 rachelch 阅读(513) 评论(0) 推荐(0) 编辑