typescript란

Untitled

Untitled

Untitled

그러니 우리는 TypeScript compiler을 설치해야 한다.

실행환경

Type annotation

let a: string; //a에는 string만 들어올 수 있다
a = "Mark"; //good
a = 39; //error!
function hello(b: number) {};
hello('Mark'); //error!

Types