// 예제 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