Lodash - identity method



Syntax

_.identity(value)

This method returns the first argument it receives.

Arguments

  • value(*) − Any value.

Output

  • (*) − Returns value.

Example

var _ = require('lodash');
var object = { 'a': 2 };
 
console.log(_.identity(object) === object);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

true
lodash_util.htm
Advertisements