Review JavaScript Fundamentals by Building a Gradebook App - Step 1

Tell us what’s happening:

I don’t know what i’m doing wrong here, it appears this: “TypeError: getAverage is not a function”

Your code so far


// User Editable Region

function getAverage(scores) {
  let sum = 0;

  for(let i=0; i< scores.length; i++) {
    sum = sum + scores[i];
  };

getAverage = 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; rv:127.0) Gecko/20100101 Firefox/127.0

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 1

getAverage is the function you’re defining. It’s not a variable so you can’t assign it to any expression.

The getAverage function expects a returned value. So the last statement inside the function should return something.

1 Like

that solved it, thank you!!!

2 Likes

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