前端基础TypeScript数组类型数组泛型数组泛型我们也可以使用数组泛型(Array Generic) Array<elemType> 来表示数组:let fibonacci: Array<number> = [1, 1, 2, 3, 5];