摘要: map方法 原理 //map 遍历格式所有项并返回一个新数组 Array.prototype.myMap = function(callback){ let arr = []; for(let i = 0;i<this.length;i++){ arr.push(callback(this[i],i 阅读全文
posted @ 2023-02-23 16:50 巫小婆 阅读(34) 评论(0) 推荐(0) 编辑