any와 generic

함수의 (매개변수)에 따라 달라지는 type을 위해 generic을 쓴다.

선언1. hello<미리선언string>(매개변수)

선언2. hello(추론매개변수)

'mark'의 type을 추론하여 함수,매개변수,리턴값에 추론된 type을 지정한후 반환한다.
배열과 튜플에서 generic
클래스 generic

keyof

keyof를 사용하면 객체안에 key값이 될 수 있는 것들만 나오게된다.

'TypeScript' 카테고리의 다른 글

클래스 constructor, public, private, protected, static, readonly  (0) 2021.08.02
Interface 섹션  (0) 2021.08.02
tsconfig schema  (0) 2021.07.31
compiler옵션 중 strict 옵션  (0) 2021.07.31
typescript 기초와 설치  (0) 2021.07.30

+ Recent posts