Create array of all integers between two numbers, inclusive, in Javascript/jQueryES6 :

2022-08-30 01:02:44

Say I have the following checkbox:

<input type="checkbox" value="1-25" />

To get the two numbers that define the boundaries of range I'm looking for, I use the following jQuery:

var value = $(this).val();
var lowEnd = Number(value.split('-')[0]);
var highEnd = Number(value.split('-')[1]);

How do I then create an array that contains all integers between and , including and themselves? For this specific example, obviously, the resulting array would be:lowEndhighEndlowEndhighEnd

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25]

答案 1
var list = [];
for (var i = lowEnd; i <= highEnd; i++) {
    list.push(i);
}

答案 2

ES6 :

Use Array.from (docs here):

console.log(
   Array.from({length:5},(v,k)=>k+1)
)