타입스크립트 기본타입(primitive types) 원시타입 자바스크립트 기본형 let 변수명 : 타입 = 값 숫자형(number) const count: number = 1; 문자열(string) const message:string = 'hellow world'; 참,거짓(boolean) const done: boolean = true; null,undefined 는 생략 Typescript 2022.08.27