타입 좁히기
-
아이템 22 - 타입 좁히기타입스크립트 2023. 3. 14. 18:05
여러가지 타입이 가능할 때, 문맥에 따라 특정 타입으로 추론하게 하는 방법 타입 좁히기는 타입스크립트가 넓은 타입으로부터 좁은 타입으로 추론하는 과정을 말하는데, 다음과 같은 방법으로 타입을 좁힐 수 있습니다. 조건문 const el = document.getElementById('foo'); // Type is HTMLElement | null if (el) { el // Type is HTMLElement } else { el // Type is null } 예외를 던지거나 함수를 반환(early return) // 예외를 던지는 방법 const el = document.getElementById('foo'); // Type is HTMLElement | null if (..