Skip to content

Instantly share code, notes, and snippets.

@ludndev
Created April 7, 2024 10:07
Show Gist options
  • Save ludndev/c48811164b93f1d122b1fc9e1e9b73f8 to your computer and use it in GitHub Desktop.
Save ludndev/c48811164b93f1d122b1fc9e1e9b73f8 to your computer and use it in GitHub Desktop.
function roundUpToAny(n, up = 5) {
return Math.round((n + (up / 2)) / up) * up;
}
console.log(roundUpToAny(1881));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment