Lodash - stubObject method



Syntax

_.stubObject()

This method returns a new empty object.

Output

  • (Object) − Returns the new empty object.

Example

var _ = require('lodash');
var arrays = _.times(2, _.stubObject);
 
console.log(arrays);

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

Command

\>node tester.js

Output

[ {}, {} ]
lodash_util.htm
Advertisements