Lodash pick method
语法
Creates an object composed of the picked object properties.
参数
object (Object) − The source object.
[paths] (...(string|string[])) − The property paths to pick.
输出
(Object) − Returns the new object.
实例
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
输出