Lodash - stubArray method



Syntax

_.stubArray()

This method returns a new empty array.

Output

  • (Array) − Returns the new empty array.

Example

var _ = require('lodash');
var arrays = _.times(2, _.stubArray);
 
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