reduce方法:

reduce() 方法对数组中的每个元素执行一个由您提供的reducer函数(升序执行),将其结果汇总为单个返回值。

reducer 函数接收4个参数:

1.Accumulator (acc) (累计器)

2.Current Value (cur) (当前值)

3.Current Index (idx) (当前索引)

4.Source Array (src) (源数组)

语法:

arr.reduce(callback(accumulator, currentValue[, index[, array]])[, initialValue]);

回调函数第一次执行时,accumulator 和currentValue的取值有两种情况:如果调用reduce()时提供了initialValue,accumulator取值为initialValue,currentValue取数组中的第一个值;如果没有提供 initialValue,那么accumulator取数组中的第一个值,currentValue取数组中的第二个值。

如果数组为空且没有提供initialValue,会抛出TypeError 。如果数组仅有一个元素(无论位置如何)并且没有提供initialValue, 或者有提供initialValue但是数组为空,那么此唯一值将被返回并且callback不会被执行。

你可能感兴趣的:(reduce方法:)