tsc -w
입력 const 사람: {name? : string, age : number} = { age : 20}
const 생일: string | number = "2020-01-01";
type ManyType = string | number | Boolean;
const 이것저것: ManyType = 123;
function 함수2(x: number | string) : void {
if(typeof x === 'number'){
console.log(x + 3)
}
}
함수2(15);
number | string
: 새로운 타입