// typescript 설치, npm 이 설치되어 있어야함 npm install -g typescript // sayHello.ts typescript파일 생성 function sayHello ( firstName : string ) { console . log ( 'Hello ' + firstName ); } let firstName : string = 'Hana' ; sayHello ( firstName ); // 엄격한 체크를 수행하는 트랜스 명령어 tsc --strictNullChecks sayHello.ts # 설치 $ npm install -g typescript # 타입스크립트 파일을 자바스크립트 파일로 변환 $ tsc --strictNullChecks sayHello.ts # 문자 안에 변수 넣기 `${key} : ${value}` // ' <- 이것과 이것 -> ` 은 다른 문자임에 주의하자! end