使用 reduce 实现数组 map 方法

2020-12-13 03:36

阅读:402

标签:col   dex   his   func   tac   red   elf   ons   nbsp   

  //使用 reduce 实现数组 map 方法
    const selfMap2 = function (fn, context){
        let arr = Array.prototype.slice.call(this)
        // 这种实现方法和循环的实现方法有异曲同工之妙,利用reduce contact起数组中每一项
        // 不过这种有个弊端,会跳过稀疏数组中为空的项
        return arr.reduce((pre, cur, index) => {
            return [...pre, fn.call(context, cur, index, this)]
        }, [])
    }

    Array.prototype.selfMap = selfMap2
    var arr1 = [1, 2, 3]
    arr1.length = 5

    let arrMap = arr1.selfMap(function (x) {
        return x * 2
    })
    // [2, 4, 6]

 

使用 reduce 实现数组 map 方法

标签:col   dex   his   func   tac   red   elf   ons   nbsp   

原文地址:https://www.cnblogs.com/wangxi01/p/11080110.html


评论


亲,登录后才可以留言!