StudyForYou / ouahhan-typescript-with-react

우아한 타입스크립트 with 리액트 스터디 레포 🧵
4 stars 0 forks source link

#6 [3장_1] void 타입과 never 타입의 특징과 차이점을 알려주세요 #18

Closed qooktree1 closed 3 months ago

qooktree1 commented 3 months ago

❓문제

void 타입과 never 타입의 특징과 차이점을 알려주세요

🎯답변

[특징]

[차이점]

주로 함수에 사용하지만 변수에도 void와 never 타입을 설정할 수 있습니다. 이 때 각 타입에 할당할 수 있는 타입의 값에 차이가 있습니다.

drizzle96 commented 3 months ago

[특징]

[차이점]

주로 함수에 사용하지만 변수에도 void와 never 타입을 설정할 수 있습니다. 이 때 각 타입에 할당할 수 있는 타입의 값에 차이가 있습니다.

hyeyoonS commented 3 months ago

Void타입

function shoModal(type:ModalType):void {
    feedbackSlice.actions.createModal(type);
    }
let voidValue: void = undefined;

Never타입

function generateError(res:Response): never {
    throw new Error (res.getMessage();
}

function checkStatus(): never {
    while (true) {
    //...
    }
}