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
- node.js로 로그인하기
- 계산맞추기 게임
- googleColaboratory
- Spring-Framework
- node.js 설치
- Concurrently
- react오류
- 모두의 파이썬
- Colaboratory 글자 깨짐
- 리액트
- 인프런
- intellij
- 모던자바스크립트
- 거북이 대포 게임
- Python
- JS 개념
- 노드에 리액트 추가하기
- react
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 타자 게임 만들기
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Do it 자바스크립트 + 제이쿼리 입문
- props
- 웹 게임을 만들며 배우는 리액트
- 따라하며 배우는 노드 리액트 기본 강의
- vs code 내 node
- 자바스크립트
- spring-boot
- DB Browser
Archives
- Today
- Total
프로그래밍 삽질 중
TypeScript 개념 - 2 본문
* 출처 : https://github.com/ZeroCho/ts-all-in-one
* void 타입
- 타입은 return값을 사용하지 안 겠다는 뜻(메서드나 매개변수에서는 리턴값 사용 가능, but 조심해야 함)
- 결과값을 반환하지 않는 함수에 설정, 반면 결과 값을 반환하는 함수의 경우 명시적으로 반환 값에 타입 기술 가능
출처 : https://yamoo9.gitbook.io/typescript/types/function-union-void
// 리턴 값 타입이 명시적으로 설정되지 않는 함수
function assignClass(name:string): void {
document.documentElement.classList.add(name);
}
// 리턴 값 타입이 숫자인 함수
function factorial(n:number): number {
if (n < 0) { return 0; }
if (n === 1) { return 1; }
return n * factorial(n-1);
}
// 리턴 값 타입이 문자인 경우
function repeat(text:string, count:number=1): string {
let result:string = '';
while(count--) { result += text; }
return result;
}
* 타입만 선언하고 싶을 때는 declare 사용
- 구현은 다른 파일에 있어야 함
declare const a: string;
declare function a(x: number): number;
declare class A {}
* 타입 가드(Type Guard)
- 타입 가드 사용 시 조건문에서 객체의 타입을 좁혀갈 수 있음
- typeof와 instanceof 사용 시 해당 조건문 블록 내에서는 해당 변수의 타입이 다르다는 것(=좁혀진 범위의 타입) 이해함
function numberOrNumArray(a: number | number[]) {
if(Array.isArray(a)) { //a = number로 인식
a.concat(4);
} else {
a.toFixed(3)
}
}
numberOrNumArray(123)
numberOrNumArray([1,2,3])
function numOrStr(a: number | string) {
if (typeof a === 'string') { //문자열일 경우
a.split(',');
} else { //숫자일 경우
a.toFixed(1);
}
}
class A6 {
aaa() {}
}
class B6 {
bbb() {}
}
function aOrB(param: A6 | B6) {
if(param instanceof A6) {
param.aaa();
}
}
aOrB(new A6())
aOrB(new B6())
* 참고 : https://radlohead.gitbook.io/typescript-deep-dive/type-system/typeguard
'과거 프로그래밍 자료들 > Javascript&typescript' 카테고리의 다른 글
[TS] forEach, map, filter 제네릭 분석 (0) | 2022.09.16 |
---|---|
TypeScript 개념 - 3 (0) | 2022.09.16 |
TypeScript 개념 - 1 (0) | 2022.09.15 |
호출스택, 이벤트루프, 태스크큐, 백그라운드 (0) | 2022.09.15 |
비동기 Promise & async await 2 (1) | 2022.09.14 |