Review JavaScript Fundamentals by Building a Gradebook App - Step 2

Tell us what’s happening:

I’m really not sure why “Check Your Code” doesn’t allow me to pass. Sorry for bothering anyone.

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) {
  let mark;
if(score == 100){
  mark = "A++";
} else if(score < 99 && score > 90){
 mark = "A";
} else if(score < 89 && score > 80){
 mark = "B";
} else if(score < 79 && score > 70){
  mark = "C";
} else if (score < 69 && score > 60){
  mark = "D";
}else {
  mark = "F";
}
return mark;
}

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

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 2

These if statements are more complex than you need and not quite right. What grade should you get when score == 99?

I’m checking all the values with

for (let i = 100; i > 0; i--) {
  console.log(i, getGrade(i))
}

Your function has issues

1 Like

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