Lodash _.flowRight() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.flowRight()方法用于创建一个新的复合函数,该函数从右到左调用所提供的函数,其中为每个连续调用提供前一个的返回值。它与 _.flow() 方法几乎相同。
句法:
_.flowRight( funcs )
参数:此方法接受如上所述和如下所述的单个参数:
- funcs:此参数保存要调用的函数。它是一个可选参数。
返回值:此方法返回新的复合函数。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// Cube of a number
function cube(number) {
return number * number * number;
}
// Using the _.flowRight() method
var multiplycube =
_.flowRight([cube, _.multiply]);
// Printing the output
console.log(multiplycube(2, 3));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// double value of a number
function doubled(number) {
return number * 2;
}
// Using the _.flowRight() method
var adddoubled =
_.flowRight([doubled, _.add]);
// Printing the output
console.log(adddoubled(6, 8));
输出:
216
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Function to calculate the
// double value of a number
function doubled(number) {
return number * 2;
}
// Using the _.flowRight() method
var adddoubled =
_.flowRight([doubled, _.add]);
// Printing the output
console.log(adddoubled(6, 8));
输出:
28