const a : number = 1;
const b : string = "hi ts";
const c : boolean = true;
any - 다들어감 어떤 것이든.. 사용하지 말자
number - int, Long(big int), small int
string - "" '' ``
boolean - true false (0, 1 x)
object - {} 사용하지 말자
let d = 1; //let d: number
d = "hi" //Type 'string' is not assignable to type 'number'.
타입스크립트가 자동으로 타입을 받음