Lodash - divide method



Syntax

_.divide(dividend, divisor)

Divide two numbers.

Arguments

  • dividend (number) − The first number in a division.

  • divisor (number) − The second number in a division.

Output

  • (number) − Returns the quotient.

Example

var _ = require('lodash');
 
console.log(_.divide(10,4));

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

Command

\>node tester.js

Output

2.5
lodash_math.htm
Advertisements