标签:回调 函数 接收 red cti ini 传递 function 注意
reduce() 方法接收一个函数作为累加器,数组中的每个值(从左到右)开始缩减,最终计算为一个值。
reduce() 可以作为一个高阶函数,用于函数的 compose。
注意: reduce() 对于空数组是不会执行回调函数的。
语法:
array.reduce(function(total, currentValue, currentIndex, arr), initialValue)
arrray:数组
total:初始值(必需)
currentValue:当前值(必需)
currentIndex:当前元素索引
arr:当前元素所属对象
initialValue:传递给数组的初始值
标签:回调 函数 接收 red cti ini 传递 function 注意
原文地址:https://www.cnblogs.com/gpzhen/p/9599278.html