Merge pull request #70 from ograsyilmaz/patch-1

Update 07_day_functions.md
pull/91/head
Asabeneh 5 years ago committed by GitHub
commit c4c7e549ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -203,7 +203,7 @@ functionName(parm1,parm2,parm3,...) // during calling or invoking three argument
function sumArrayValues(arr) {
let sum = 0;
for (let i = 0; i < arr.length; i++) {
sum = sum + numbers[i];
sum = sum + arr[i];
}
return sum;
}

Loading…
Cancel
Save