HomeLanguagesJavascriptLodash _.div() Method

Lodash _.div() Method

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
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6922 POSTS0 COMMENTS
Nicole Veronica
12038 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12143 POSTS0 COMMENTS
Shaida Kate Naidoo
7058 POSTS0 COMMENTS
Ted Musemwa
7298 POSTS0 COMMENTS
Thapelo Manthata
7015 POSTS0 COMMENTS
Umr Jansen
7003 POSTS0 COMMENTS