Lodash - multiply method
Syntax
_.multiply(multiplier, multiplicand)
Multiply two numbers.
Arguments
multiplier (number) − The first number in a multiplication.
multiplicand (number) − The second number in a multiplication.
Output
(number) − Returns the product.
Example
var _ = require('lodash');
var result = _.multiply( 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
10
lodash_math.htm
Advertisements