Merge pull request #82 from Musabii/patch-2
changed the order of if conditions
This commit is contained in:
commit
314a795e52
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
const sumAll = function(min, max) {
|
const sumAll = function(min, max) {
|
||||||
if (min < 0 || max < 0) return "ERROR";
|
|
||||||
if (typeof min !== "number" || typeof max !== "number") return "ERROR";
|
if (typeof min !== "number" || typeof max !== "number") return "ERROR";
|
||||||
|
if (min < 0 || max < 0) return "ERROR";
|
||||||
if (min > max) {
|
if (min > max) {
|
||||||
const temp = min;
|
const temp = min;
|
||||||
min = max;
|
min = max;
|
||||||
|
|
Loading…
Reference in a new issue