Lodash _.reduceRight

2021-09-24 10:11 更新

_.reduceRight(collection, [iteratee=_.identity], [accumulator])

這個方法類似_.reduce ,除了它是從右到左遍歷collection(集合)中的元素的。

添加版本

0.1.0

參數(shù)

  1. collection (Array|Object): 用來迭代的集合。
  2. [iteratee=_.identity] (Function): 每次迭代調用的函數(shù)。
  3. [accumulator] (*): 初始值。

返回

(*): 返回累加后的值。

例子

var array = [[0, 1], [2, 3], [4, 5]];
 _.reduceRight(array, function(flattened, other) {  return flattened.concat(other);}, []);
// => [4, 5, 2, 3, 0, 1]


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號