출처 : 생활코딩
실습 : TS Playground
// TS // hello World 출력하기 let hello:string = "hello World"; console.log(hello); // hello world
... 변환 ...
// JS let hello = "hello World"; console.log(hello); // hello world