ts-book
ts-book copied to clipboard
[p.58, 오타] 맨 아래 예제 불필요 코드
const unk: unknown = 'hello';
unk; // 불필요
if(unk) {
unk;
} else {
unk;
}