sumAll solution: check if min/max are integers, not just numbers

This commit is contained in:
liam robertson 2020-10-10 19:06:51 +01:00 committed by GitHub
parent 314a795e52
commit 2457cb4099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;