Skip to content

Instantly share code, notes, and snippets.

@maksimerohin
Created December 6, 2018 11:41
Show Gist options
  • Save maksimerohin/ff7cf09faeb6233b866732fc551de4cc to your computer and use it in GitHub Desktop.
Save maksimerohin/ff7cf09faeb6233b866732fc551de4cc to your computer and use it in GitHub Desktop.
Округляет число (до целого, десятка, сотни).
function roundTo(num) {
return Math.round(num/10)*10;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment