元组的使用
元组是数组的加强版。使用 CSV 格式的数据源时一般需要使用元组。
// 严格规定数组中每一列的类型
const xiaojiejie: [string, string, number] = ["dajiao", "teacher", 28];
// 获取 CSV 格式的数据
const xiaojiejies: [string, string, number][] = [
["dajiao", "teacher", 28],
["liuying", "teacher", 18],
["cuihua", "teacher", 25],
];
但是现在 CSV 已经过时了,现在一般都使用对象。所以一般用不到元组。