Open In App

Lodash _.div() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The Lodash _.div() method performs the division operation and returns the quotient of all the given arguments.

Syntax:

_.div( val1, val2,..., valn )

Parameters: This method takes n values and operate them _.div() method.

Return Value: This method returns the quotient of all the given arguments.

Note: This will not work in normal JavaScript because it requires the lodash.js contrib library to be installed. Lodash.js contrib library can be installed using npm install lodash-contrib –save.

Example 1:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var divVal  = _.div( 8, 2, 1 ); 
    
console.log("The Quotient of given values is :", divVal);


Output:

The Quotient of given values is : 4

Example 2:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var divVal  = _.div( 16, 2, 4, 1 ); 
    
console.log("The Quotient of given values is :", divVal);


Output:

The Quotient of given values is : 2

Example 3:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var divVal  = _.div( 1, 2, 4, 1 ); 
    
console.log("The Quotient of given values is :", divVal);


Output:

The Quotient of given values is : 0.125


Last Updated : 29 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads