Lodash - add method



Syntax

_.add(augend, addend)

Adds two numbers.

Arguments

  • augend (number) − The first number in an addition.

  • addend (number) − The second number in an addition.

Output

  • (number) − Returns the total.

Example

var _ = require('lodash');
 
console.log(_.add(3,6));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

9
lodash_math.htm
Advertisements