A Very Big Sum

  • + 0 comments

    Another proposal with a forEach (like for the simple array challenge) :

    let result = 0; 
    ar.forEach((value) => result += value)
    return result;