6장
1분 퀴즈
1. if 문의 중첩을 줄이는 절차를 그대로 따라 하면 됩니다.
① if 문 다음에 나오는 공통된 절차를 각 분기점 내부에 넣는다.
function test() {
let result = '';
if (a) {
if (!b) {
result = 'c';
}
result += 'b';
return result;
} else {
result = 'a';
result += 'b';
return result;
}
}