Saturday, September 6, 2025
HomeLanguagesJavascriptLodash _.inc() Method

Lodash _.inc() Method

The 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:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var val = 100 
var 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:

Javascript




// Defining lodash contrib variable 
var _ = require('lodash-contrib'); 
  
var val = 51 
var 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
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11868 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS