js reduce累加器

reduce 是es6 新增的数组操作方法 意为累加器 使用方法如下 [1,1,1,1].reduce((total,currentValue,index)=>{ },initialValue)    点击并拖拽以移动 initialValue 代表的是累加器的初始值 必填 total的值在初始情况下等于initialValue 用来接收返回的结果 必填 currentValue 代表数组中的每一项 必填 index 表示数组下标 可选

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgxgyz.html