typescript 数组长度
时间: 2023-09-24 16:14:05 浏览: 152
TypeScript Array(数组)
5星 · 资源好评率100%
在 TypeScript 中,可以使用 `length` 属性来获取数组的长度。例如:
```typescript
const fruits: string[] = ['apple', 'banana', 'orange'];
console.log(fruits.length); // 输出:3
```
此外,在 TypeScript 中,还可以使用泛型数组类型 `Array<T>` 来声明一个数组类型,其中 `T` 表示数组中元素的类型。例如:
```typescript
const numbers: Array<number> = [1, 2, 3];
console.log(numbers.length); // 输出:3
```
阅读全文