_.identity(value)
_.identity()
方法返回与传入值相同的值。
参数
value
(*): 任意值。
返回值
(*) 返回与传入值相同的值。
示例
javascript
console.log(_.identity("hello"));
// => 'hello'
console.log(_.identity(42));
// => 42
console.log(_.identity({ name: "John" }));
// => { name: 'John' }
在这个示例中,_.identity()
分别返回了传入的字符串、数字和对象,它们分别为 'hello'
、42
和 { name: 'John' }
。