Lodash - rangeRight 方法



语法

_.rangeRight([start=0], end, [step=1])

此方法类似于 _.range,只是它以降序填充值。

参数

  • [start=0](数字) - 范围的起点。

  • end(数字) - 范围的终点。

  • [step=1](数字) - 要递增或递减的值。

输出

  • (数组) - 返回数字范围。

示例

var _ = require('lodash');

console.log(_.rangeRight(4));
console.log(_.rangeRight(0, 20, 5));

将上述程序保存在**tester.js**中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ 3, 2, 1, 0 ]
[ 15, 10, 5, 0 ]
lodash_util.htm
广告