Open In App

Lodash _.pick() Method

Lodash _.pick() method is used to return a copy of the object that is composed of the picked object properties. It can be called a subset of the original object as it consists of some of its properties.

Syntax:

_.pick(object, [paths]);

Parameters:

Return Value:

This method returns the new object.



Example 1: In this example,




// Requiring the lodash library 
const _ = require("lodash");
 
// The source object
let obj = {
    Name: "GeeksforGeeks",
    password: "gfg@1234",
    username: "your_geeks"
}
// Using the _.pick() method
console.log(_.pick(obj, ['password', 'username']));

Output:



{password: "gfg@1234", username: "your_geeks"}

Example 2:  




// Requiring the lodash library 
const _ = require("lodash");
 
// The source object
let obj = { 'x': 1, 'y': '2', 'z': 3 };
 
// Using the _.pick() method
console.log(_.pick(obj, ['x', 'y']));

Output:

{x: 1, y: '2'}
Article Tags :