From 5513be576ae7ce9ab489238093dd26e87adb5575 Mon Sep 17 00:00:00 2001 From: Will <59489624+cats256@users.noreply.github.com> Date: Sat, 29 Jul 2023 15:39:33 -0500 Subject: [PATCH] Update sumAll-solution.js --- 05_sumAll/solution/sumAll-solution.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/05_sumAll/solution/sumAll-solution.js b/05_sumAll/solution/sumAll-solution.js index 08daf58..9cc35bb 100644 --- a/05_sumAll/solution/sumAll-solution.js +++ b/05_sumAll/solution/sumAll-solution.js @@ -1,8 +1,16 @@ const sumAll = function (min, max) { if (!Number.isInteger(min) || !Number.isInteger(max)) return "ERROR"; if (min < 0 || max < 0) return "ERROR"; - if (min > max) [min, max] = [max, min]; + if (min > max) { + const temp = min; + min = max; + max = temp; + } + // An alternative way to swap the values of min and max like above is to use the array destructuring syntax. + // Here's an optional article on it: https://www.freecodecamp.org/news/array-destructuring-in-es6-30e398f21d10/ + // if (min > max) [min, max] = [max, min]; + let sum = 0; for (let i = min; i <= max; i++) { sum += i;