#22 타입 좁히기 (type narrowing)
·
🎨 프론트엔드 공부/JS & TS
이펙티브 타입스크립트 (댄 밴더캄 지음) 를 읽고 정리 📍요약 ✅tagged union, discriminated union (특정 문자열을 타이핑에 활용) 및 타입 가드를 통해 type narrowing을 구현 가능 📍타입 좁히기(type narrowing) - 가장 일반적인 예시 : null check (특정 엘리먼트가 있는지 여부) - 분기문에 따라 타입을 좁힐 수 있음 const el = document.getElementById('foo'); // Type is HTMLElement | null if (el) { el // Type is HTMLElement el.innerHTML = 'Party Time' } else { el // Type is null alert('No element #fo..