Tell us what’s happening:
Building a Gradebook App 1
let sum=0;
function getAverage (scores){
// brings up the scores so i could see them
console.log(scores);
console.log(scores.length);
//then i did a for loop
for(let i = 0 ; i < scores.length; i++){
//get scores total
sum = sum + scores[i];
}
console.log(sum/scores.length);
}
If i comment out one of the two score arrays i can log out just fine.
But if i don’t comment out one , the sum keeps summing up all the grades in both score arrays.
Your code so far
// User Editable Region
let sum=0;
function getAverage(scores) {
console.log(scores);
for(let i=0;i < scores.length;i++){
sum= sum + scores[i];
}
console.log("The average for this scores array"+" "+ sum/scores.length);
}
console.log(getAverage([92, 88, 12, 77, 57, 100, 67, 38, 97, 89]));
//console.log(getAverage([45, 87, 98, 100, 86, 94, 67, 88, 94, 95]));
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0
Challenge Information:
Review JavaScript Fundamentals by Building a Gradebook App - Step 1