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.

3 lines
204 B

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