Question: function _six( grade ) Create a JavaScript function that meets the following requirements: Is passed a numeric grade, calculating and displaying the corresponding letter grade
function _six( grade ) Create a JavaScript function that meets the following requirements: Is passed a numeric grade, calculating and displaying the corresponding letter grade based on: 100 - 90 = A+, 89 - 85 = A, 84 - 80 = A, 79 -76 = B+, 75 73 = B, 72 70 = B-, 69 66 = C+, 65 63 = C, 62 60 = C-, 59 56 = D+, 55 53 = D, 52 50 = D-, < 50 = F Displays the result to the console as illustrated below. Calling _six(93) Congratulations, you passed the course. Your final grade is : 93 = A+ java script
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
