호다닥

JS. function에서의 console.log 와 return 본문

Javascript

JS. function에서의 console.log 와 return

3jun 2020. 6. 25. 15:57

function에서 console.log 와 return의 차이

5번째 줄 코드에서 greetNicolas 는 sayHello 함수의 리턴값이다.

다시 말해 greetNicolas는 sayHello의 실행된 결과값이다.

하지만 sayHello 함수는 아무것도 반환하지 않았다.

 

greetNicolas에 반환값을 주고 싶으면 아래와 같이 sayHello 함수에 return , 반환값을 부여하면 된다.

 

 

return 값을 주어 나만의 function 만들기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const calculator = {
    plus: function (a, b) {
        return a + b;
    },
    minus: function (a, b) {
        return a - b;
    },
    multi: function (a, b) {
        return a * b;
    },
    divide: function (a, b) {
        return a / b;
    },
    square: function (a, b) {
        return a ** b; 
    }
};
 
const square = calculator.square(2, 3);
console.log(square);
 
cs
Comments