course content

Course Content

Introduction to JavaScript

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:

Arguments for the first calling 24, 12, and 32.
Arguments for the second calling 12, 42, and 5.

Hint
1. Use the return keyword inside the function body.

2. Use the function name to call this function.

3. Choose values yourself.

Section 6.

Chapter 6