Skip to content

Instantly share code, notes, and snippets.

@mephraums
Created October 25, 2013 04:34
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 mephraums/7149480 to your computer and use it in GitHub Desktop.
Save mephraums/7149480 to your computer and use it in GitHub Desktop.
Roundup Function
function roundUp(number, digits)
{
var factor = Math.pow(10,digits);
return Math.ceil(number*factor) / factor
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment