lesson-cover

Go Back

Foundations of JavaScript

Sum of 3 Numbers

Write a function that takes in 3 numbers and returns their sum.

Here's how another developer might use your function:

solution(5,9,2) // Should return 16
solution(4,1,9) // Should return 14