Array.prototype.reduce
Posted Tekkaman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Array.prototype.reduce相关的知识,希望对你有一定的参考价值。
【Array.prototype.reduce】
Array.reduce([callback, initialValue])
参数
callback
执行数组中每个值的函数,包含四个参数:
previousValue
- 上一次调用回调函数返回的值,或者是提供的初始值(
initialValue
) currentValue
- 数组中当前被处理的元素
currentIndex
- 当前被处理元素在数组中的索引, 即
currentValue
的索引.如果有initialValue
初始值, 从0开始.如果没有从1开始. array
- 调用
reduce
的数组
initialValue
- 可选参数, 作为第一次调用 callback 的第一个参数。
参考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce_clone
以上是关于Array.prototype.reduce的主要内容,如果未能解决你的问题,请参考以下文章
Using Array.prototype.reduce() to Reduce Conceptual Boilerplate for Problems on Arrays
为啥 Array.prototype.reduce() 不接受 Map 对象作为初始值?
如何正确使用 TypeScript 和 Array.prototype.reduce?