world
![Typescript, Hello world!](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdDRY5R%2FbtqEcn3OiYL%2FNBFPAR3jyvaqX8lcgAFp20%2Fimg.png)
Typescript, Hello world!
Typescript, Hello world! Environment install typescript compiler(실은 Transpiling, 변환) $ npm install -g typescript $ tsc -v Version 3.9.2 $ node -v v10.15.3 Ch 1. Transpiling tsc 을 이용해서 ts파일을 js파일로 변환시킨다. person.ts file 작성 class Person { private name: string; constructor(name: string) { this.name = name; } sayHello() { return "Hello, " + this.name; } } const person = new Person("Lee"); console.log..