Horje
create an array from 1 to n javascript Code Example
create an array from 1 to n javascript
Array.from(Array(10).keys())
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[...Array(10).keys()]
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Array.from({length: 10}, (_, i) => i + 1)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
javascript fill array with range
function range(start, end) {
  return Array(end - start + 1).fill().map((_, idx) => start + idx)
}
var result = range(9, 18); // [9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
console.log(result);
javascript create array from 1 to n
// Javascript create array from 1 to n 

[...Array(n+1).keys()].slice(1)

// E.g. for n = 10:
// [...Array(11).keys()].slice(1)
// => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
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]
Source: dev.to




Javascript

Related
how to add react icons using yarn Code Example how to add react icons using yarn Code Example
mac address validation regex Code Example mac address validation regex Code Example
remove non alphanumeric characters javascript Code Example remove non alphanumeric characters javascript Code Example
SyntaxError: Unexpected end of JSON input while parsing near '...version":"2.0.6","devD' cli Code Example SyntaxError: Unexpected end of JSON input while parsing near '...version":"2.0.6","devD' cli Code Example
yarn \angular cli Code Example yarn \angular cli Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15