.times(n, [iteratee=.identity])

sourcenpm package

Invokes the iteratee n times, returning an array of the results of each invocation. The iteratee is invoked with one argument; (index).

Since

0.1.0

Arguments

  • n (number): The number of times to invoke iteratee.
  • [iteratee=.identity] (Function)_: The function invoked per iteration.

Returns

(Array): Returns the array of results.

Example

  1. _.times(3, String);
    // => ['0', '1', '2']
    _.times(4, _.constant(0));
    // => [0, 0, 0, 0]