fix(curriculum): added additional tip for building a gradebook app (#59794)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Clarence
2025-04-18 09:56:01 +01:00
committed by GitHub
parent efb8d482fc
commit ca866b2c80
@@ -7,7 +7,7 @@ dashedName: step-2
# --description--
Now the teacher needs your help converting the student score to a letter grade.
Now the teacher needs your help converting the student score to a letter grade.
Complete the `getGrade` function that takes a number `score` as a parameter. Your function should return a string representing a letter grade based on the score.
@@ -27,6 +27,7 @@ Here are the scores and their corresponding letter grades:
- Remember that you learned about conditional statements (`if`, `else if`, and `else`).
- Remember that you learned about comparison operators (`>`, `<`, `>=`, `<=`, `===`).
- Remember that you learned about the logical AND operator (`&&`).
# --hints--