Lodash - stubTrue method



Syntax

_.stubTrue()

This method returns true.

Output

  • (boolean) − Returns true.

Example

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

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

Command

\>node tester.js

Output

[ true, true ]
lodash_util.htm
Advertisements