var _ =require('underscore');var student ={ name :'Sam', age:30, id:1};// Example 1: use pick to copy name and agevar 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);