how to add numbers from 1 to 1000 in an array javascript code example
Example 1: generate array range
for (i of range(1, 5)) {
console.log(i);
}
/* Output
* 1 2 3 4 5 */
[...range(1, 5)] // [1, 2, 3, 4, 5]
Example 2: how to fill array with consecutive numbers javascript
Array.from({length: n}, (_, i) => i + 1)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]