Lodash - pick method
Syntax
_.pick(object, [paths])
Creates an object composed of the picked object properties.
Arguments
object (Object) − The source object.
[paths] (...(string|string[])) − The property paths to pick.
Output
(Object) − Returns the new object.
Example
var _ = require('lodash');
var object = { 'a': 1, 'b': '2', 'c': 3 };
var result = _.pick(object, ['a', 'b']);
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
{ a: 1, b: '2' }
lodash_object.htm
Advertisements