1

I must have missed something stupid but why is sumArray returning undefined ???

<script>

    function sumArray(arr, n, sum){
        if(n == 0){
            console.log( arr[0] + sum ); // log shows 15 as expected
            return  arr[0] + sum;        // the function would return undefined
        }else{
            sum = sum + arr[n-1];
            sumArray(arr, n-1, sum); 
        }
    }

    var arr1 = [0,1,2,3,4,5];
    var result = sumArray(arr1, arr1.length, 0)

    console.log(result); // returns Undefined !!!

</script>
4

1 回答 1

6

改变:

else{
    sum = sum + arr[n-1];
    sumArray(arr, n-1, sum); 
}

else{
  sum = sum + arr[n-1];
  return sumArray(arr, n-1, sum); //return the function
}
于 2013-10-08T08:02:33.437 回答