Open In App

Lodash _.add() Method

Last Updated : 27 Oct, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Lodash _.add() method is used to add two numbers.

Syntax:

_.add(augend, addend);

Parameters:

  • augend: This parameter holds the first number in addition.
  • addend: This parameter holds the second number in addition.

Return Value:

This method returns the result of adding two numbers.

Example 1: In this example, we are adding two numbers by the use of the lodash _.add() method.

Javascript




// Requiring the lodash library 
const _ = require("lodash");
 
// Use of _.add() method
let gfg = _.add(12, 38);
 
// Printing the output 
console.log(gfg)


Output:

50

Example 2: In this example, we are adding two numbers by the use of the lodash _.add() method.

Javascript




// Requiring the lodash library 
const _ = require("lodash");
 
// Use of _.add() method
let gfg = _.add(248, 723);
 
// Printing the output 
console.log(gfg)


 Output:

971

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads