You are viewing a single comment's thread. Return to all comments →
function getGrade(score) { let grade; score <= 30 && score > 25 ? grade='A' : score <= 25 && score > 20 ? grade='B' : score <= 20 && score > 15 ? grade='C' : score <= 15 && score > 10 ? grade='D' : score <= 10 && score > 5 ? grade='E' : grade='F' return grade; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 2: Conditional Statements: If-Else
You are viewing a single comment's thread. Return to all comments →