ts-book icon indicating copy to clipboard operation
ts-book copied to clipboard

[p.58, 오타] 맨 아래 예제 불필요 코드

Open wiseguy77 opened this issue 1 year ago • 0 comments

const unk: unknown = 'hello';
unk; // 불필요

if(unk) {
    unk;
} else {
    unk;
}

wiseguy77 avatar Sep 12 '23 06:09 wiseguy77