Typescript : Hello world 출력하기

Seong Ho Kim·2024년 1월 11일
0

Typescript

목록 보기
1/5
post-thumbnail

Typescript : Hello world 출력하기 실습

  • Typescript는 Javascript와 똑같은 방법으로 사용해서 출력할 수 있는데 TS Playground를 이용해서 최종적으로 변환된 Javascript 코드를 확인할 수 있다.

출처 : 생활코딩

실습 : 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
profile
안녕하세요 Junior UIUX Designer 입니다 😊

0개의 댓글