Open utterances-bot opened 2 years ago
typescript - 타입 추론 / 단언 / 가드, interface, type guard, type assertion, &
https://kyounghwan01.github.io/blog/TS/fundamentals/assertion-guard-interface/
잘 읽었습니다.
// 즉, number임을 알기 때문에 b에 number를 강제로 assertion 한다
let b = a as string;
이부분 설명은 number로 assert 한다고 하셨는데 string으로 하신건가요?
@splex7 오타가 있는것 같네요 let b = a as number 가 맞는거같습니다!
let b = a as number
typescript - 타입 추론 / 단언 / 가드 | 기억보다 기록을
typescript - 타입 추론 / 단언 / 가드, interface, type guard, type assertion, &
https://kyounghwan01.github.io/blog/TS/fundamentals/assertion-guard-interface/