Merge pull request #113 from mangonaise/patch-1
sumAll solution: check if min/max are integers, not just numbers
This commit is contained in:
commit
8eeb98ee71
|
@ -1,5 +1,5 @@
|
|||
const sumAll = function(min, max) {
|
||||
if (typeof min !== "number" || typeof max !== "number") return "ERROR";
|
||||
if (!Number.isInteger(min) || !Number.isInteger(max)) return "ERROR";
|
||||
if (min < 0 || max < 0) return "ERROR";
|
||||
if (min > max) {
|
||||
const temp = min;
|
||||
|
|
Loading…
Reference in New Issue