typescript2数组类型注解// 数组注解
let numberList: number[] = [1, 2, 3]
let stringList: string[] = ['好的呀', '是的呢', '什么呢']
let unde
2021-11-16