“Liczby sumowe rekurencyjnie JS” Kod odpowiedzi

JavaScript Recursive Sum Funkcja

// Write a recursive method that returns the sum of all elements in an array

function recSum(nums) {
    if (nums.length === 1 ) {
        return nums[0];
    }
    if (nums.length === 0 ) {
        return 0;
    }
    let sum = nums[0] + recSum(nums.slice(1,nums.length));
    return sum;
}
Caffeinated Developer

Liczby sumowe rekurencyjnie JS

function sum(n) {
    if (n < 1) return 0;    // exit condition
    return n  + sum(n - 1); // return value plus result of recursive call
}

console.log(sum(3));
Sore Seahorse

Odpowiedzi podobne do “Liczby sumowe rekurencyjnie JS”

Pytania podobne do “Liczby sumowe rekurencyjnie JS”

Więcej pokrewnych odpowiedzi na “Liczby sumowe rekurencyjnie JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu