Underscore.JS - times method



Syntax

_.times(n, iteratee, [context])

times method calls the iteratee function n number of times. It passes an index to iteratee function as well. See the below example −

Example

var _ = require('underscore');

//Example: Check if times method calls a function 3 times
_.times(3, function(index){console.log(index)});

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

Command

\>node tester.js

Output

0
1
2
underscorejs_utilities.htm
Advertisements