rangeRight
最后更新于:2022-04-02 00:08:55
## rangeRight
+ [link](./rangeRight "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L13744 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.rangeright "See the npm package.")
```
_.rangeRight([start=0], end, [step=1])
```
这个方法类似 `_.range`, 除了它是降序生成值的。
### 参数
1. [start=0] (number)
开始的范围
2. end (number)
结束的范围
3. [step=1] (number)
范围的增量 或者 减量
### 返回值 (Array)
返回范围内数字组成的新数组
### 示例
```
_.rangeRight(4);
// => [3, 2, 1, 0]
_.rangeRight(-4);
// => [-3, -2, -1, 0]
_.rangeRight(1, 5);
// => [4, 3, 2, 1]
_.rangeRight(0, 20, 5);
// => [15, 10, 5, 0]
_.rangeRight(0, -4, -1);
// => [-3, -2, -1, 0]
_.rangeRight(1, 4, 0);
// => [1, 1, 1]
_.rangeRight(0);
// => []
```
';