EN
TypeScript - get array length
0 points
This article will show you how to get array length in TypeScript.
Quick solution:
xxxxxxxxxx
1
const array: number[] = [2, 4, 1, 5];
2
3
console.log(array.length); // 4
The .length
property is very often used when iterating over an array.
xxxxxxxxxx
1
const array: number[] = [10, 20, 30, 40];
2
3
for (let i = 0; i < array.length; i++) {
4
console.log(array[i]);
5
}
Output:
xxxxxxxxxx
1
10
2
20
3
30
4
40