Underscore.JS - defaults method



Syntax

_.defaults(object, *defaults)

defaults method fills the default values in undefined properties of object passed using first value present in defaults objects and returns the result. See the below example −

Example

var _ = require('underscore');

var student = { name : 'Sam'};

// Example 1: use defaults to add class
var student1 = _.defaults(student, {class: 10});
console.log(student1);

// Example 2: use defaults to add class and school as default properties
student1 = _.defaults(student, {class: 10}, {school: 'Government'});
console.log(student1);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

{ name: 'Sam', class: 10 }
{ name: 'Sam', class: 10, school: 'Government' }
underscorejs_updating_objects.htm
Advertisements