world

    Typescript, Hello world!

    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..