From 8b4a0a9ef5c1a83c88962243f6829e9e9e5d98f5 Mon Sep 17 00:00:00 2001 From: Lin Xing Date: Mon, 22 Aug 2022 22:00:23 -0700 Subject: [PATCH] just to test --- JavaScript/Functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JavaScript/Functions.js b/JavaScript/Functions.js index d6d831b..c9c79c8 100644 --- a/JavaScript/Functions.js +++ b/JavaScript/Functions.js @@ -1,5 +1,5 @@ // A function that returns the smallest argument -function returnSmallest(a, b) { +function returnSmallestValue(a, b) { if(a>b) { return b } else { @@ -7,4 +7,4 @@ function returnSmallest(a, b) { } } -// Add your functions below this line :) ------------------------------------ \ No newline at end of file +// Add your functions below this line :) ------------------------------------