Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- typeORM
- Python
- MongoDB
- Queue
- react
- OCR
- Express
- class
- jest
- dfs
- mongoose
- AWS
- cookie
- Sequelize
- 자료구조
- JavaScript
- game
- Bull
- Dinosaur
- 공룡게임
- 정렬
- nestjs
- MySQL
- TypeScript
- flask
- GIT
- nodejs
- Nest.js
- 게임
Archives
- Today
- Total
포시코딩
[TypeScript][노마드코더] #2 OVERVIEW OF TYPESCRIPT 정리(2) 본문
728x90
TypeScript에만 존재하는 타입
unknown
let a: unknown;
let b = a + 1; // Error!
if (typeof a === 'number') {
let b = a + 1
}
let b = a.toUpperCase(); // Error!
if (typeof a === 'string') {
let b = a.toUpperCase();
}
void
아무것도 return하지 않는 함수 타입
// function hello(): void { // 이렇게 써도 되지만 생략 가능
function hello() {
console.log(); // return 하지 않는다.
}
never
nerver는 함수가 절대 return하지 않을 때 발생
function hello(): never { // Error!
return 'x';
}
function hello(): never { // 사용 가능
throw new Error('x'); // return하지 않고 오류를 발생시키는 함수
}
function hello(name: string|number) {
if (typeof name === 'string') { // name: string
} else if (typeof name === 'number') { // name: number
} else { // name: never. 타입이 올바르게 들어온다면 절대 실행되지 않음
}
}
정리
void > unknown > never 순으로 많이 사용된다.
728x90
'JavaScript' 카테고리의 다른 글
[TypeScript][노마드코더] #3 FUNCTIONS(1) (0) | 2023.01.17 |
---|---|
[TypeScript] cannot find name 'console' error 해결방법 (0) | 2023.01.17 |
[TypeScript][노마드코더] #2 OVERVIEW OF TYPESCRIPT 정리(1) (0) | 2023.01.17 |
WebSocket(웹 소켓) - 작성중 (0) | 2023.01.09 |
String.padEnd(), padStart() (0) | 2022.12.20 |