diff --git a/JavaScript/Functions.js b/JavaScript/Functions.js index d6d831b..2014a06 100644 --- a/JavaScript/Functions.js +++ b/JavaScript/Functions.js @@ -7,4 +7,9 @@ function returnSmallest(a, b) { } } -// Add your functions below this line :) ------------------------------------ \ No newline at end of file +// Add your functions below this line :) ------------------------------------ + +// A function that returns the sum of 2 arguments +function returnSum(a, b) { + return a+b +} \ No newline at end of file