③번에서는 짧은 절차에 이미 return이 들어 있으므로 따로 할 일은 없고, ④번까지 진행한 최종 결과는 다음과 같습니다.
function test() { let result = ''; if (!a) { result = 'a'; result += 'b'; return result; } if (b) { result += 'b'; return result; } result = 'c'; result += 'b'; return result; }
본문으로
2. 'ler'