코딩 기록/타입스크립트
(TypeScript) 타입스크립트의 기초 타입 선언
타입스크립트의 기초 타입 선언입니다. const name: string = 'kim'; // string 문자타입 const age: number = 3; // number 숫자타입 const isLoading: boolean = false; // boolean 논리타입 const baby: any = 'baby'; // any 어떤값이 올지 모르는 상태 const winner: undefined = undefined; // 정해지지 않은 타입 const loser: null = null; // 값이 없는 타입 // void 리턴하는 값이 없음 function notify(): void { alert('주의사항 알려드리겠습니다.'); } // never 어떠한 값도 발생되지 않음 function noti..
2021. 1. 23.