[ javascript ] switch 연습 및 throw Error 출력

JooKit 주킷 2021. 2. 2. 00:29
목차 접기
728x90
반응형
function calculate(command, a, b ) {
    switch ( command ) {
        case 'add':
            console.log(a + b);
            break;
        case 'minus':
            console.log(a -b);
            break;  
        default:
            throw Error('input again');
    }
}

let num = calculate('minusffff', 1, 2);
728x90
반응형
LIST