Challenge: SumChallenge: Sum

Task

  1. Implement a function sum that takes 3 arguments (a, b, and c) and returns the sum.
  2. Call this function twice and save the results to the variables sum1 and sum2.

The output should be:

Use arguments 24, 12, and 32 for the first function call.

Use arguments 12, 42, and 5 for the second function call.

1. Use the return keyword inside the function body.
2. Use the function name to call this function.
3. Choose values yourself.

function sum(a, b, c) {
  return a + b + c;
}

let sum1 = sum(24, 12, 32);
let sum2 = sum(12, 42, 5);

console.log("sum1 =", sum1);
console.log("sum2 =", sum2);
      

Everything was clear?

Section 6. Chapter 6