728x90 별칭1 [TypeScript] 타입스크립트 타입 1. 유니온유니온 타입을 사용하면 변수 하나를 여러 가지 타입으로 지정할 수 있습니다.let uni: number | string | boolean = 10;printUni(uni);uni = "hello";printUni(uni);uni = true;printUni(uni);function printUni(value: number | string | boolean): void { if (typeof value === "number") { console.log(value); } else if (typeof value === "string") { console.log(value); } else if (typeof value === "boolean") { console.log(value.. 2025. 5. 23. 이전 1 다음 728x90