im not sure 1. Your getGrade function should return “A++” if the score is 100.
2. Your getGrade function should return “A” if the score is 94.
3. Your getGrade function should return “B” if the score is between 80 and 89.
4. Your getGrade function should return “C” if the score is 78.
5. Your getGrade function should return “D” if the score is between 60 and 69.
6. Your getGrade function should return “F” if the score is 57.
7. Your getGrade function wrong but i keep getting this in the console
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){console.log("A++");}
else if (score <= 99 && score>= 90){console.log("A");}
else if (score <= 89 && score>= 80){console.log("B");}
else if (score <= 79 && score>= 70){console.log("C");}
else if (score <= 69 && score >= 60){console.log("D");}
else if (score <= 59 && score >= 50){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/129.0.0.0 Safari/537.36
Challenge Information:
Review JavaScript Fundamentals by Building a Gradebook App - Step 2