Array
두가지 방법
const strNum1: string[] = ['one', 'two'];
const strNum2: Array<string> = ['one', 'two'];
const realNum1: number[] = [1, 2];
const rearNum2: Array<number> = [1, 2];
Tuple
다른 타입을 같이 담을 수 있다.
튜플 보다는 interface / type alias / class를 사용하자.
const student: [string, number] = ['steve', 56];
student[0]; // steve
student[1]; // 56
const [name, age] = student;
// name → steve
// age → 56
'개발언어 > TypeScript' 카테고리의 다른 글
교차타입 (Intersection Types) (0) | 2021.04.12 |
---|---|
식별 유니온 타입 (Discriminated Unions Type) (0) | 2021.04.12 |
타입 에일리어스 (Type Alias), 유니온 타입 (Union Type) (0) | 2021.04.10 |
함수 (Function) (0) | 2021.04.10 |
원시타입 (primitive type) (0) | 2021.04.10 |
댓글