Lodash es una biblioteca de JavaScript que funciona en la parte superior de underscore.js. Lodash ayuda a trabajar con arrays, strings, objetos, números, etc. El _. El método de identidad devuelve el primer argumento que recibe.
Sintaxis:
_.identity(value)
Parámetros: este método acepta un parámetro como se mencionó anteriormente y se describe a continuación:
-
valor: Puede ser cualquier valor.
Devoluciones: Devuelve el primer argumento que recibe.
Ejemplo 1:
// Requiring the lodash library const _ = require("lodash"); // Use of _.identity() method var user = [ { 'name': 'XXXX', 'age': 36, 'active': true }, { 'name': 'YYYY', 'age': 40, 'active': false } ]; let gfg = _.identity(user); // Printing the output console.log(gfg);
Nota: Aquí, const _ = require(‘lodash’) se usa para importar la biblioteca lodash en el archivo.
Producción:
[Object {active: true, age: 36, name: "XXXX"}, Object {active: false, age: 40, name: "YYYY"}]
Ejemplo 2:
// Requiring the lodash library const _ = require("lodash"); // Use of _.identity() method var company = { 'name': 'geeksforgeeks' }; let gfg = _.identity(company) === company; // Printing the output console.log(gfg);
Nota: Aquí, const _ = require(‘lodash’) se usa para importar la biblioteca lodash en el archivo.
Producción:
true
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA