Lodash - reduceRight 方法
语法
_.reduceRight(collection, [iteratee=_.identity], [accumulator])
此方法类似于 _.reduce,不同之处在于它从右到左迭代集合的元素。
参数
collection (数组 | 对象) − 要迭代的集合。
[iteratee=_.identity] (函数) − 每次迭代时调用的函数。
[accumulator] (*) − 初始值。
输出
(*) − 返回累积值。
示例
var _ = require('lodash'); var list = [[0, 1], [2, 3], [4, 5]]; var result = _.reduceRight(list, function(flattened, other) { return flattened.concat(other); }, []); console.log(result);
将上述程序另存为 tester.js。运行以下命令以执行此程序。
命令
\>node tester.js
输出
[ 4, 5, 2, 3, 0, 1 ]
lodash_collection.htm
广告