Lodash _.reduceRight() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。
_.reduceRight() 方法类似于 _.reduce() 方法,只是它从右到左迭代集合的元素。
句法:
_.reduceRight(collection, iteratee, accumulator)
参数:此方法接受三个参数,如上所述,如下所述:
- 集合:此参数保存要迭代的集合。
- iteratee:此参数保存每次迭代调用的函数。
- 累加器:此参数保存初始值。
返回值:该方法返回累计值。
示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
// Requiring the lodash library
const _ = require("lodash");
// Original array
var array = [[10, 11], [12, 13], [14, 15]];
// Use of _.reduceRight() method
let gfg = _.reduceRight(array,
function(flattened, other) {
return flattened.concat(other);
}, []);
// Printing the output
console.log(gfg);
输出:
[ 14, 15, 12, 13, 10, 11 ]
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Original array
var array = [['C++', 'C#'],
['DAA', 'Java'], ['Lodash', 'Python']];
// Use of _.reduceRight() method
let gfg = _.reduceRight(array,
function(flattened, other) {
return flattened.concat(other);
}, []);
// Printing the output
console.log(gfg);
输出:
[ 'Lodash', 'Python', 'DAA', 'Java', 'C++', 'C#' ]
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。