• tsdoc
  • Grammar
    • Optional Properties: property 뒤에 물음표(ex. user?: string)
  • type assertion: in typescript
    • as:  Type Assertion in TypeScript
  • Export, ref
    • export: (반드시) export한 이름으로 import해야 함. 중괄호 사용.
    • export default: import할 때 내가 원하는 이름으로 가능. 중괄호x.
  • unary_plus: +
  • Union Type: a type formed from two or more other types. (e.g., id: number | string)
  • typeof: returns a string indicating the type of the operand's value.
  • keyof typeof: why use it