튜플은 배열의 길이가 고정되고 각 요소의 타입이 지정되어 있는 배열 형식을 의미합니다.
const arr: [string, number] = ['hello', 77];
정의하지 않은 타입, 인덱스로 접근할 경우 오류가 나오게 됩니다.
arr[1].concat('%'); // Error, 'number' does not have 'concat'
arr[6] = 'hello'; // Error, Property '5' does not exist on type '[string, number]'.