Open In App

Lodash _.sub() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The Lodash _.sub() method returns the difference of all the given arguments.

Syntax:

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

Parameters: This method returns n values to operate them _.sub() method.

Return Value: This method returns the difference 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 diff  = _.sub( 10, 2, 4, 1 ); 
    
console.log("The Difference is : ", diff);


Output:

The Difference is : 3

Example 2:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var diff  = _.sub( 10 ); 
    
console.log("The Difference is : ", diff);


Output:

The Difference is : 10

Example 3:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var diff  = _.sub( 1, 3, 5, 7, 9, 99, 100 ); 
    
console.log("The Difference is : ", diff);


Output:

The Difference is : -222


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