Lodash _.range() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.range()方法用于创建从给定起始值到但不包括结束值的数字数组。如果指定了负值 start 而没有结束或步骤,则使用 -1 的步骤。如果未指定end ,则设置为从 start开始,然后设置为 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);
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);
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);
输出:
[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]