더북(TheBook)
// 예제 1 - 다음 두 함수는 의미가 같음
function a() {}
function a() {
  return undefined;
}
// 예제 2 - 다음 두 함수도 의미가 같음
function a() { 
  console.log('a');
}
function a() { 
  console.log('a');
  return undefined;
}

반환값도 값이므로 다른 식이나 문에 넣어 사용할 수 있습니다.

function a() { 
  return 10;
}
console.log(a());
10
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.