Skip to content

Instantly share code, notes, and snippets.

@detj
Last active October 5, 2015 22:17
Show Gist options
  • Save detj/2885685 to your computer and use it in GitHub Desktop.
Save detj/2885685 to your computer and use it in GitHub Desktop.
Round to decimal places
function roundNumber(num, dec) {
var result = Math.round(num*Math.pow(10,dec))/Math.pow(10,dec);
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment