타입스크립트 기본 타입 tuple

yonghee·2022년 4월 13일
0

tuple

튜플은 배열의 길이가 고정되고 각 요소의 타입이 지정되어 있는 배열 형식을 의미합니다.

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]'.
profile
필요할 때 남기는 날것의 기록 공간

0개의 댓글

관련 채용 정보