TypeScript 시작하기

jeong dain·2022년 9월 6일
0

TypeScript란?


타입이 존재하는 JavaScript 프로그래밍 언어

시작하기


  • node 가 설치되어있지 않을 경우
    brew install node
    • node -v 로 설치완료 여부 확인
  1. 타입스크립트 설치
npm install -g typescript
  1. ts 파일 작성
// hello.ts

function concat(left:string , right:string):string{
  return left+right;
}

let hello:string = concat("hello", "world");
console.log(hello);
  1. js 파일로 컴파일
tcs hello.ts
profile
Web Frontend Developer #TypeScript #React #NextJS🤸‍♀️

0개의 댓글