Typescript로 블록체인 만들기 3) class와 private, public
지난 번에는 객체 파라미터를 적용시키기 위하여 interface라는 개념을 도입했다. 하지만 interface는 javascript로 compile 시킬 때에 반영이 되지 않는다. 따라서, compile 후 react 등과 같이 기타 라이브러리에서 사용하고자 한다면 typescript에서부터 class로 정의하는 것이 좋다. index.ts class Human { public name: string; public age: number; public gender: string; constructor(name: string, age: number, gender: string) { this.name = name; this.age = age; this.gender = gender; } } // class의 p..
Programming/Typescript
2019. 4. 26. 19:11