服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.times(n, iteratee=_.identity)

调用迭代n次数,返回每个调用结果的数组。迭代器被调用一个参数; (指数)

以来

0.1.0

参数
  1. n (数字):调用的次数iteratee
  2. [iteratee=_.identity] (Function):每次迭代调用的函数。
返回

(数组):返回结果数组。

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