ES6 기본 매개변수 정의

기존
function test(opt){
    opt !== undefined ? opt : 'optional';
    ........    
}

해결
function test(opt = 'optional'){
    ........    
}

opt 값이 없을 경우 기본 값으로 optional을 정의한다.

+ Recent posts