You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

4 lines
204 B

// 元组: 确切知道包含多少个元素,以及特定索引对应的类型
// 规定数组只有两个元素,索引为 0 和 1 的元素类型是 number
let position: [number, number] = [39, 114]