Lodash教程

Lodash pick method

语法

_.pick(object, [paths])
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

\>node tester.js

输出

{ a: 1, b: '2' }
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4