Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Lodash _.flow() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc.

The _.flow() method is used to generate a new composite function that returns the result of invoking the provided functions with the this binding of the function generated. Each of the successive invocations is provided the return value of the previous.

Syntax:

_.flow( funcs )

Parameters: This method accepts a single parameter as mentioned above and described below:

  • funcs: This parameter holds the functions that are to be invoked. It is an optional parameter.

Return Value: This method returns the new composite function.

Example 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 _.flow() method 
var multiplycube = _.flow([_.multiply, cube]);
 
// Return the output
console.log(multiplycube(2, 3));

 

 

Output:

 

216

 

Example 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 _.flow() method 
var adddoubled = _.flow([_.add, doubled]);
 
// Return the output
console.log(adddoubled(6, 8));

 

 

Output:

 

28

 

My Personal Notes arrow_drop_up
Last Updated : 30 Mar, 2021
Like Article
Save Article
Similar Reads
Related Tutorials