Skip to content

Instantly share code, notes, and snippets.

@dmiro
Created May 27, 2013 13:39
Show Gist options
  • Save dmiro/5657100 to your computer and use it in GitHub Desktop.
Save dmiro/5657100 to your computer and use it in GitHub Desktop.
Round decimals
var original=28.453
//round "original" to two decimals
var result=Math.round(original*100)/100 //returns 28.45
// round "original" to 1 decimal
var result=Math.round(original*10)/10 //returns 28.5
//round 8.111111 to 3 decimals
var result=Math.round(8.111111*1000)/1000 //returns 8.111
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment