Lodash - subtract method



Syntax

_.subtract(minuend, subtrahend)

Subtract two numbers.

Arguments

  • minuend (number) − The first number in a subtraction.

  • subtrahend (number) − The second number in a subtraction.

Output

  • (number) − Returns the difference.

Example

var _ = require('lodash');
var result = _.subtract( 5, 2);

console.log(result);

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

Command

\>node tester.js

Output

3
lodash_math.htm
Advertisements