Open In App

Lodash _.inc() Method

Improve
Improve
Like Article
Like
Save
Share
Report

Lodash _.inc() Method returns the result by incrementing the given value by 1.

Syntax:

_.inc( value );

Parameters:

This method takes a value and increments it by using _.inc() method.

Return Value:

This method returns the result by incrementing the given value by 1.

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: In this example, the code demonstrates how to use the lodash-contrib library to increment a value by 1 and displays the original and incremented values in the console.

Javascript




// Defining lodash contrib variable
let _ = require('lodash-contrib');
 
let val = 100
let incrVal  = _.inc( val );
   
console.log("The Given value is :", val);
console.log("The Increment of Given value is :", incrVal);


Output:

The Given value is : 100
The Increment of Given value is : 101

Example 2: In this example, the code demonstrates how to use the lodash-contrib library to increment a value by 1 and displays the original and incremented values in the console.

Javascript




// Defining lodash contrib variable
let _ = require('lodash-contrib');
 
let val = 51
let incrVal  = _.inc( val );
   
console.log("The Given value is :",val);
console.log("The Increment of Given value is :",incrVal);


Output:

The Given value is : 51
The Increment of Given value is : 52

Last Updated : 13 Nov, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads