当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.rangeRight()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。

_.rangeRight()方法用于创建从给定起始值到给定但不包括给定结束值的数字数组。它以降序填充值。如果指定的负起始点没有结束或步长,则使用步长值-1。如果未指定结尾,则将其设置为从头开始,然后设置为0。

用法:

_.rangeRight( start, end, step )

参数:此方法接受上述和以下所述的三个参数:

  • start:它是一个数字,指定范围的开始。它是一个可选值。默认值为0。
  • end:它是一个数字,指定范围的结束。
  • step:它是一个数字,指定范围内的值递增或递减的数量。预设值为1。

返回值:它返回一个数组,数组中的数字范围按降序排列。



范例1:

Javascript

// Requiring the lodash library   
const _ = require("lodash");             
    
// Using the _.rangeRight() method  
let range_arr = _.rangeRight(6);  
        
// Printing the output   
console.log(range_arr);

输出:

[5, 4, 3, 2, 1, 0]

范例2:

Javascript

// Requiring the lodash library   
const _ = require("lodash");             
    
// Using the _.rangeRight() method 
// with the step taken as 3 
let range_arr = _.rangeRight(0,15,3);  
        
// Printing the output   
console.log(range_arr);

输出:

[12, 9, 6, 3, 0]

范例3:

Javascript

// Requiring the lodash library   
const _ = require("lodash");             
    
// Using the _.rangeRight() method 
// with the step taken as -2 
let range_arr = _.rangeRight(0,-10,-2);  
        
// Printing the output   
console.log(range_arr);

输出:

[-8, -6, -4, -2, 0]

相关用法


注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 Lodash _.rangeRight() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。