JavaScript program which takes a score and will print the grade
Problem Definition
Make a JavaScript program which takes a score and will print the grade as the following criteria:
a. If score is greater or equal 90 and less or equal 100 than will print A
b. If score is greater or equal 80 and less or equal 89 than will print B
c. If score is greater or equal 70 and less or equal 79 than will print C
d. Otherwise will print F
Code
Comments 1