//ts는 js의 변수, 매개변수, 리터값에 타입을 붙이는 것이다//주 목적은 any를 없애는 것!const a: string = "5";const b: number = 5;const c: boolean = true;const d: undefined = undefine