// Declare a tuple type
let x: [string, number];
// Initialize it
x = ["hello", 10]; // OK
x[3] = "world"; // OK, 'string' can be assigned to 'string |number'
第x [3]行=“世界”;抛出错误: 不能将类型“ world”分配给类型undefined。 长度为“ 2”的元组类型“ [字符串,数字]”在索引“ 3”处没有元素。
https://www.typescriptlang.org/docs/handbook/basic-types.html