Kyounghwan01 / blog-comment

blog 코멘트 링크 레포
0 stars 0 forks source link

blog/TS/fundamentals/assertion-guard-interface/ #44

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

typescript - 타입 추론 / 단언 / 가드 | 기억보다 기록을

typescript - 타입 추론 / 단언 / 가드, interface, type guard, type assertion, &

https://kyounghwan01.github.io/blog/TS/fundamentals/assertion-guard-interface/

splex7 commented 2 years ago

잘 읽었습니다.

// 즉, number임을 알기 때문에 b에 number를 강제로 assertion 한다

let b = a as string;

이부분 설명은 number로 assert 한다고 하셨는데 string으로 하신건가요?

Kyounghwan01 commented 2 years ago

@splex7 오타가 있는것 같네요 let b = a as number 가 맞는거같습니다!