TypeScript-Learn Typescript로 블록체인 만들기

  • npm install typescript --save-dev

  • npx tsc을 실행시키면 index.js, index.js.map이 생성된다.

  • index.ts console.log("hello")로 바꾼다. hello가 출력된다

  • (gender?) ?를 붙임으로써 선택적인 파라미터로 설정할 수 있다.

  • return을 했을 때 'string' 형식은 'void' 형식에 할당할 수 없습니다. void를 string 형식으로 바꾼다.

  • yarn add tsc-watch --dev

  • class를 private하면 보호할 수 있다.

  • 블록체인에서 모르는 부분이 있었지만, 타입스크립트를 배웠다.