Review JavaScript Fundamentals by Building a Gradebook App - Step 2

Tell us what’s happening:

My function is returning “A++” but some my code is not passing???

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 (100 === 100) {
   console. log("A++");

 } else if (90 <= 99 ) {
   console.log("A");

 } else if (80 <= 89) {
   console.log("B");

 } else if (70 <= 79) {
  console.log("C");

 } else if (60 <= 69) {
   console.log("D");

 } else {
   console.log("F")
 }

}

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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Review JavaScript Fundamentals by Building a Gradebook App - Step 2

If you compare numbers with themselves like 90 <= 99 it does not make any sense for the coding perspective because it is always true. You need to compare numbers with score parameter that you give to your function. Like if(score === 100). And use return instead of console.log().

1 Like

Hi there!

Remember, the console.log() haven’t returns the value. It’s print the value to the console. for returning a value, you need to use return keyword.

thank you very much for the feedback. :slightly_smiling_face:

1 Like

If you have any other questions, you can ask :slightly_smiling_face: