본문 바로가기
JS/JS_BASE

[기본문법 6] return

by David.Ho 2023. 2. 9.
728x90
반응형
// returns

const calculator = {
    plus: function (a, b) {
        return (a + b);
    },
    minus: function (a, b) {
        return (a - b);
    },
    times: function (a, b) {
        return (a * b);
    },
    divide: function (a, b) {
        return  (a / b);
    },
    power: function (a, b) {
        return  (a ** b);
    },

};

const plusResult = calculator.plus(2, 3);
console.log(plusResult);​
// Returns

const age = 96;
function calculateKrAge(ageOfForeigner) {
   return ageOfForeigner + 2;
}

const krAge = calculateKrAge(age);

console.log(krAge);

 

728x90
반응형

'JS > JS_BASE' 카테고리의 다른 글

[기본문법 8] HTML in Javascript  (0) 2023.02.13
[기본문법 7] conditionals  (0) 2023.02.09
[기본문법 5] Function with JS  (0) 2023.02.08
[기본문법 4] object  (0) 2023.01.31
[기본문법 3] 데이터 구조, array, 리스트  (0) 2023.01.30

댓글