Skip to content

Instantly share code, notes, and snippets.

@guivazcabral
Created September 1, 2016 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guivazcabral/0458328a46b575f29950f870e94c8a00 to your computer and use it in GitHub Desktop.
Save guivazcabral/0458328a46b575f29950f870e94c8a00 to your computer and use it in GitHub Desktop.
roundInStepsOfFive
function roundInStepsOfFive(number) {
return Math.round(number / 5 ) * 5;
}
alert(roundInStepsOfFive(54));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment