Underscore.JS pick方法

Underscore.JS pick方法

语法

_.pick(object, *keys)

pick方法通过复制指定的键来返回对象的副本。我们可以传递一个谓词来确定要复制的键,而不是直接传递键。请参见下面的示例−

示例

var _ = require('underscore');

var student = { name : 'Sam', age: 30, id: 1};

// Example 1: use pick to copy name and age
var student1 = _.pick(student, 'name', 'age');
console.log(student1);

// Example 2: use pick to copy age and id using function
student1 = _.pick(student, function(value){ return _.isNumber(value)});
console.log(student1);

将上面的程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

>node tester.js

输出

{ name: 'Sam', age: 30 }
{ age: 30, id: 1 }

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程