Typescript의 자료형numberstringbooleannullundefinedany (javascript와 비슷하게 아무형태나 다 들어올 수 있다는 것을 의미)let a : number = 3let b : string = "ABC"let c : number | string = "asada" c = 222let e :string [] = ['apple' ,'mango']e.push("abc")function addNumber (a:number, b:number):number{ return a+b}Typescript를 구동하기 위한 명령어tsc index.ts브라우저는 Javascript만 이해가 가능하기 때문에 Typescript로 코드를 작성했다면 그것을 Javascript로 변환해야 한다...