mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-18 22:23:21 +09:00
+2
-17
@@ -1,20 +1,5 @@
|
||||
var sumAll = function(a, b) {
|
||||
if (a > b) {
|
||||
let temp = a
|
||||
a = b
|
||||
b = temp
|
||||
}
|
||||
if (
|
||||
a < 0 || b < 0 ||
|
||||
typeof a != 'number' || typeof b != 'number'
|
||||
) {
|
||||
return 'ERROR'
|
||||
}
|
||||
let sum = 0
|
||||
for(let i = a; i < b + 1; i++) {
|
||||
sum += i
|
||||
}
|
||||
return sum
|
||||
var sumAll = function() {
|
||||
|
||||
}
|
||||
|
||||
module.exports = sumAll
|
||||
|
||||
Reference in New Issue
Block a user