1분 퀴즈
4. 다음 코드를 실행하면 출력될 변수 result의 값을 고르세요.
const result = (function(a, b){
function init(){
return doSum(a, b);
}
function doSum(a, b){
return a + b;
}
return init();
})(10, 20);
console.log(result);
① undefined
② null
③ 50
④ 30
⑤ SyntaxError