Lodash _.constant() Method

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc. The _.constant method is used to create a function that returns value.
Syntax:
_.constant(value)
Parameters: This method accepts one parameter as mentioned above and described below:
- value: The value to return from the new function.
Return Value: [Function] It returns the new constant function.
Example 1:
javascript
| // Requiring the lodash library  const _ = require("lodash");     Â// Using _.constant() methodlet gfg = _.times(3, _.constant({ 'zambiatek': 3 })); Â// Printing the output  console.log(gfg); | 
Note: Here, const _ = require(‘lodash’) is used to import the lodash library in the file.
Output:
[Object {zambiatek: 3}, Object {zambiatek: 3}, Object {zambiatek: 3}]
Example 2:
javascript
| // Requiring the lodash library  const _ = require("lodash");      // Using _.constant() methodlet obj = _.times(2,  _.constant({ 'a': 5 }));  // Checking if both objects are samelet gfg = console.log(obj[0] === obj[1] )  // Printing the output  console.log(gfg); | 
Note: Here, const _ = require(‘lodash’) is used to import the lodash library in the file.
Output:
true
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek 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!
 
				 
					


