Skip to content

Instantly share code, notes, and snippets.

@s0kil
Last active March 9, 2020 14:22
Show Gist options
  • Select an option

  • Save s0kil/6cdbb6db16720af78c8df381a59ab9ed to your computer and use it in GitHub Desktop.

Select an option

Save s0kil/6cdbb6db16720af78c8df381a59ab9ed to your computer and use it in GitHub Desktop.
function gradingStudents(grades) {
function checkRoundedGrade(grade) {
if (grade < 38) return grade;
let gradeRounded = Math.ceil(grade / 5) * 5;
if ((gradeRounded - grade) < 3) return gradeRounded;
else return grade;
}
return grades.map(grade => checkRoundedGrade(grade));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment