Skip to content

Instantly share code, notes, and snippets.

@joemaidman
Last active September 7, 2015 12:07
Show Gist options
  • Save joemaidman/83d6ffe32aeed8582036 to your computer and use it in GitHub Desktop.
Save joemaidman/83d6ffe32aeed8582036 to your computer and use it in GitHub Desktop.
Decimal rounding in javascript
//Round a decimal
function round(value, decimals) {
return Number(Math.round(value + 'e' + decimals) + 'e-' + decimals);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment