You are viewing a single comment's thread. Return to all comments →
Javascript:
function gradingStudents(grades) { // Write your code here return grades.map(g => g < 38 || g % 5 < 3 ? g : g + (5 - g % 5)); }
Seems like cookies are disabled on this browser, please enable them to open this website
Grading Students
You are viewing a single comment's thread. Return to all comments →
Javascript: