EN
TypeScript - fill array with numbers 1..N
0 points
In this short article, we would like to show how to fill the array with numbers in TypeScript.
Quick solution:
xxxxxxxxxx
1
const n: number = 5;
2
3
const array: number[] = Array(n)
4
.fill(undefined)
5
.map((_, i: number) => i + 1);
6
7
for (const entry of array) {
8
console.log(entry); // 1 2 3 4 5
9
}
Output:
xxxxxxxxxx
1
1
2
2
3
3
4
4
5
5