Lodash - range 方法
语法
_.range([start=0], end, [step=1])
创建一个数组,其中包含从 start 增至但不包含 end 的数字(正数和/或负数)。如果没有指定 end 或 step,且使用了负 start,则使用步长 -1。如果未指定 end,则将其设置为 start,然后将其设置为 0。
参数
[start=0] (数字) − 范围的开始。
end (数字) − 范围的结束。
[step=1] (数字) − 要增量或减量的值。
输出
(数组) − 返回数字范围。
示例
var _ = require('lodash'); console.log(_.range(4)); console.log(_.range(0, 20, 5));
将上述程序保存在 **tester.js** 中。运行以下命令可执行此程序。
命令
\>node tester.js
输出
[ 0, 1, 2, 3 ] [ 0, 5, 10, 15 ]
lodash_util.htm
广告