Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started