times_.times(n, iteratee, [context])
Invokes the given iteratee function n times. Each invocation of iteratee is called with an index argument. Produces an array of the returned values.
Note: this example uses the object-oriented syntax.
_(3).times(function(n){ genie.grantWishNumber(n); });
Please login to continue.