var _ =require('underscore');var student ={ name :'Sam', age:30, id:1};// Example 1: use omit to exclude name and agevar student1 = _.omit(student,'name','age');
console.log(student1);// Example 2: use omit to exclude age and id using function
student1 = _.omit(student,function(value){return _.isNumber(value)});
console.log(student1);