IT/TypeScript

TypeScript에서 as 키워드 사용하기TypeScript에서 as 키워드를 사용하여 타입을 명시적으로 지정해야 하는 경우는 여러 가지가 있는데 주요 상황들은 아래와 같다.1. 타입 단언(Type Assertion)이 필요한 경우TypeScript가 추론한 타입보다 개발자가 더 구체적인 타입을 알고 있을 때 사용.let someValue: any = "this is a string";let strLength: number = (someValue as string).length;2. 유니온 타입을 더 구체적인 타입으로 좁힐 때function getLength(obj: string | string[]) { if (typeof obj === 'string') { return (obj as..
_이준호_
'IT/TypeScript' 카테고리의 글 목록