function helloFunc() {
console.log(1234);
}
helloFunc(); // 1234
function returnFunc() {
return 123;
}
let a = returnFunc();
console.log(a); // 123
function sum(a, b) {
return a + b;
}
let a = sum(1, 2); // 1과 2는 인수
console.log(a, b, c); // 3