:: Study Recursion Function
::: How replay function self
function sum(arr, n) {
// Only change code below this line
// :: When n is 0 or minus, Don't Sum anything.
// ::: also When you last Index
if(n <= 0) {
return 0;
} else {
// :: Remember first value and Call <Next : self(n - 1)>
return arr[n - 1] + sum(arr, n - 1);
}
// Only change code above this line
}
'Programming > Javascript' 카테고리의 다른 글
배열.Sort(커스텀 함수)에 관하여 (0) | 2022.03.21 |
---|---|
브라우저 저장소 관련 정보 : 자료 보관소 (0) | 2022.01.15 |