30-Days-Of-JavaScript
30-Days-Of-JavaScript copied to clipboard
Typo on Exercice 2 of Day4
Grading for B should be, between 70-79, other logic breaks.
Excerp: Exercises: Level 2 Write a code which can give grades to students according to theirs scores: 80-100, A 70-89, B
This make sense to me!
I opened #360 to solve this. 🙂
Grading for B should be, between 70-79, other logic breaks.
Excerp: Exercises: Level 2 Write a code which can give grades to students according to theirs scores: 80-100, A 70-89, B
if(grade_variable >=80 || grade_variable <=100){ score_variable = 'A'; }else if(grade_variable >=70 || grade_variable <=89){ score_variable='B'; }
it's that the answer you looking for ?