Hey guys,
I have passed this challenge somehow, but I didn’t understand the logic behind it.
Can anyone please explain it to me?
Your code so far
function sum(arr, n) {
// Only change code below this line
if ( n <= 0) {
return 0;
}
else{
return sum(arr, n - 1) + arr[n - 1] ;
}
// Only change code above this line
}
console.log(sum([1,2,3], 2));
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.