Review JavaScript Fundamentals by Building a Gradebook App - Step 2

Tell us what’s happening:

Please i tried solving this javaScript but was unable to arrive to the real answer.

Your code so far

function getAverage(scores) {
  let sum = 0;

  for (const score of scores) {
    sum += score;
  }

  return sum / scores.length;
}

// User Editable Region

function getGrade(score) {
 if (score === 100) {
   return "A++";
 } else if (score >= 90) {
   return "A";
 } else if (score >= 80) {
   return "B";
 } else if (scores >= 70) {
   return "C";
 } else if (score >= 60) {
   return "D";
 } else if (score >= 0) {
   return "F";
 } else {
   return "invalid score";
 }
}

console.log(getGrade(96));
console.log(getGrade(82));
console.log(getGrade(56));

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 2

Hello! You don’t need to add the last else statement in your code. You should also check one of your else if statements has scores instead of score.

1 Like