- Create a variable
grade
and give it a value between 1 and 100 - Create an if statement that does the following
- if grade is between
100
and90
the if statement shall console logYou got an A grade
- if grade is between
90
and75
the if statement shall console logYou got an B grade
- if grade is between
75
and60
the if statement shall console logYou got an C grade
- if grade is less than
60
the if statement shall console logYou got an FAILED
Good Luck 😀