Skip to content

Instantly share code, notes, and snippets.

@JTLR
Created April 13, 2017 07:53
Show Gist options
  • Save JTLR/09832de4fd984906cf63c73d63b9cbf1 to your computer and use it in GitHub Desktop.
Save JTLR/09832de4fd984906cf63c73d63b9cbf1 to your computer and use it in GitHub Desktop.
Javascript round to nth decimal place
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