手写 数组reduce方法

今天被问到 数组求和,记得reduce方法 但长久未用 记错了参数,面试gg 年底被裁伤不起啊。结束后特复习一下reduce方法。 然后手写一下 加深记忆。

<script>
    Array.prototype.newReduce = function(fn, init) {
        if (typeof fn == 'function' && Array.isArray(this)) {
            let initExist = arguments.length >= 2; //有传入初始值
            let finalNum = initExist ? init : this[0];
            for (let i = initExist ? 0 : 1; i < this.length; i++) { //有传入init 从数组第0项开始处理
                finalNum = fn(finalNum, this[i], i, this)
            }
            return finalNum
        }
        console.log('fn应为一个函数')
    }
    let array = [1, 2, 3, 4, 5, 6, 7]
    let num = array.newReduce(function(pre, item, index, arr) {
        return pre + item
    }, 0)
    console.log(num)
</script>

你可能感兴趣的:(js数组方法,手写系列,javascript,html5,开发语言)