Course Content
Introduction to JavaScript
4. Conditional Statements
Introduction to JavaScript
Challenge: Sum
Task
- Implement a function
sum
that takes 3 arguments (a
,b
, andc
) and returns the sum. - Call this function twice and save the results to the variables
sum1
andsum2
.
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
2. Use the function name to call this function.
3. Choose values yourself.
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