Skip to content

Instantly share code, notes, and snippets.

@sbob909
Created January 29, 2017 14:31
Show Gist options
  • Save sbob909/3ae65105194dbe808cabe88c72bacf31 to your computer and use it in GitHub Desktop.
Save sbob909/3ae65105194dbe808cabe88c72bacf31 to your computer and use it in GitHub Desktop.
JavaScript rounding helper
// helper to round values without rounding errors
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