how to add up all the numbers in between 0 and that number
function addUp(num) {
if (num === 1) return 1;
return num + addUp(num - 1);
}
how to add up all the numbers in between 0 and that number
function addUp(num) {
if (num === 1) return 1;
return num + addUp(num - 1);
}
how to add up all the numbers in between 0 and that number
function solution(number){
var sum = 0;
for(var i = 1;i< number; i++){
if(i % 3 == 0 || i % 5 == 0){
sum += i
}
}
return sum;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us