Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

This is my code so far. I dont exactly know what I’m doing here. The code I have so far is what I have come up with from doing research. Can someone help explain what I need to do and where I went wrong?

Your code so far


// User Editable Region

function getAverage(scores) {
  let sum = 0;
  for(let i = 0; i < scores.length; i++) {
  sum =+ scores[i]
  }
  let avg = sum / scores.length;
  return avg;
}

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/131.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

1 Like

Never mind I was able to figure out what I did wrong. Instead of (=+) I needed to have (+=).