一、Typescript 中数组

       let list: number[] = [1, 2, 3];

       let list: Array<number> = [1, 2, 3];

相关文章: