ksw_devlog
TIL 12주 1일차 본문
npm install -g => 컴퓨터 전체에 설치
npx tsc --init => tsc 모듈은 한 번만 쓰고 버림
npx tsc -> ts에서 js형식으로 바꿔줌
TS를 JS로 변환해야하는 이유 -> 브라우저는 TS를 이해 못함
출력 때 : npx tsc, node index.js
or :
npm install -g ts-node 설치후
ts-node ./index
TS type
기본 타입의 종류
- String
- Number
- Boolean
- Object
- Array
- Tuple
- Enum
- Any
- Void
- Null
- Undefined
- Never
-> https://likeable-eggnog-5b5.notion.site/3-9c1cd3359dee4039ab3553e7579d11d7
함수 타입
-> https://likeable-eggnog-5b5.notion.site/4-feeae4c1b6cf4622a67d575dcfccb732
enum 타입
자바스크립트에는 없고 타입스크립트에만 있는 타입
enum은 특정 값들의 집합을 의미하는 자료형
-> https://likeable-eggnog-5b5.notion.site/5-enum-bea6ccb283f646848530270ac3bd9031
Union 타입 / Type Alias
-> https://likeable-eggnog-5b5.notion.site/6-Union-Type-Alias-0617bf68395b46e98e1f9ca3f030dd5c
'TIL' 카테고리의 다른 글
TIL 12주 3일차- Type script (0) | 2023.01.18 |
---|---|
TIL 12주 2일차 - Type script 복습 (2) | 2023.01.17 |
WIL 11주차 (0) | 2023.01.16 |
TIL 11주 5일차 - React Native project 회고 (0) | 2023.01.13 |
TIL 11주 4일차-react native project (0) | 2023.01.12 |