Array.prototype._map = function (Fn) { const that = this; // 传入的数组 const ansArr = []; // 新建一个存储数组 // 使用 forEach 进行遍历,因为 Fn 会传三个属性 值:item,索引:index,原数组:element,不能使用forof that.forEach((item,index,element)=>{ // 传入参数并且进行 Fn 操作,将每次返回的结果赋值给 resElement; const resElement = Fn(ite...