Open In App

Underscore.js _.div() Method

Last Updated : 04 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The _.div() Method returns the quotient of all the given arguments.

Syntax:

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

Parameters: This method takes n values to operate on them.

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

Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed. 

underscore.js contrib library can be installed using npm install underscore-contrib –save.

Example 1: 

Javascript




// Defining underscore contrib variable
var _ = require('underscore-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 underscore contrib variable
var _ = require('underscore-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 underscore contrib variable
var _ = require('underscore-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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads