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