function helloFunc() { // 실행 코드 console.log(1234); } // 함수 호출 helloFunc(); // 1234
function returnFunc() { return 123; } let a = returnFunc(); console.log(a); // 123
function sum(a, b) { // a와 b는 매개변수 return a + b; } let a = sum(1, 2); // 1과 2는 인수 let b = sum(3, 4); console.log(a, b, c); // 3, 7
// 함수 선언! function hello() { console.log('Hello!'); } // 함수 표현! let world = function () { console.log('World!'); } // 함수 호출 hello(); // Hello! world(); // World!
// 객체 데이터 const orosy = { name: 'OROSY', age: 64, // 메소드 getName: function () { return this.name; } }; const hisName = orosy.getName(); console.log(hisName); // OROSY // 혹은 console.log(orosy.getName()); // OROSY