Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

I’m stuck here, can someone point me to the right direction?

Your code so far


// User Editable Region

function getAverage(scores) {
  let sum = 0;
  for (let i = 0; i < scores.lenght; i++) {
    sum += scores[i];
  }
  return sum / scores.lenght;
}
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

If you check the console, it should be warning you about this part. check spelling!

Wooow how did I missed that?? Thanks @JeremyLT :metal:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.