Lodash _.identity() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。 identity方法返回它接收到的第一个参数。
句法:
_.identity(value)
参数:此方法接受一个如上所述和如下所述的参数:
值:它可以是任何值。
返回:返回它接收到的第一个参数。
示例 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);
注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
输出:
[Object {active: true, age: 36, name: "XXXX"}, Object {active: false, age: 40, name: "YYYY"}]
示例 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);
注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
输出:
true