实现Array.proptotype.reduce--简易版

本文详细解读了Array.prototype.reduce的改进版doReduce函数,展示了如何使用回调函数进行数组求和,并介绍了新的函数参数和错误处理机制。通过实例演示了如何在JavaScript中实现归并操作。
摘要由CSDN通过智能技术生成

首先,分析原有的Array.prototype.reduce
reduce是一种归并方法,对每一项都会运行一个归并方法(计算数组之和可以使用)
参数:

reduce(callback[,initialVlaue])

其中:
callback: 数组中每个元素执行操作的方法,必选
initialValue:初始值,可选

操作函数:callback(prev,cur[,index,arr])
prev: 前面操作的结果,有initialVlaue的时候,开始执行的时候prev=initialValue;没有initialValue的时候,prev = 数组的第0项
cur: 当前数组遍历到的值
index:cur在数组中的索引
arr:遍历的数据

最终实现版

// 判断类型
function type(x) {
    return Object.prototype.toString.call(x).slice(8, -1);
}
Array.prototype.doReduce = function(/*callback,initial_value*/){
    let context = this,
        callback = arguments[0];
    if(type(callback) !== 'Function') {
        throw new TypeError(`${callback} is not a function`);
    }
    let context_type = type(context);
    if(context_type !== 'Array') {
        throw new TypeError('${context} is not a Array');
    }
    let {length} = context,
        k = 0,
        res = null;
    // 判断是否传递了 初始化参数
    let initial_value = arguments.length > 0
        ? arguments[1]
        : context[k++];
    res = initial_value;
    for(; k < length; k++) {
        res = callback(res, context[k], k, context);
    }
    return res;
}

// 原有的reduce实现功能
let arr = [1, 2, 3, 4, 5];
let ans = arr.reduce((prev, cur) => prev += cur, 0);
console.log(ans);

let ans2 = arr.doReduce((prev,cur) => prev += cur, 0);
console.log(ans2);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值