利用reduce 模仿map原理
Posted wangyisu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用reduce 模仿map原理相关的知识,希望对你有一定的参考价值。
Array.prototype.myMap = function(callback){
const self = this;
return self.reduce((prev,next,index)=>{
prev.push(callback(next,index,self))
return prev
},[])
}
以上是关于利用reduce 模仿map原理的主要内容,如果未能解决你的问题,请参考以下文章