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


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


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

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

用法:

_.range( start, end, step )

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

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

返回值:它返回具有给定数字范围的数组。



范例1:

Javascript

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

输出:

[0, 1, 2, 3, 4]

范例2:

Javascript

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

输出:

[0, 2, 4, 6, 8]

范例3:

Javascript

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

输出:

[-1, -3, -5, -7, -9]

相关用法


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