A Very Big Sum

  • + 0 comments

    Hi, this is my JS solutions

    function aVeryBigSum(ar) {
        // Write your code here
        return ar.reduce((sum,current)=> sum+current)
    
    }