Lodash - stubString method



Syntax

_.stubString()

This method returns an empty string.

Output

  • (string) − Returns an empty string.

Example

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