Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created February 6, 2014 08:56
Show Gist options
  • Save snowman-repos/8840656 to your computer and use it in GitHub Desktop.
Save snowman-repos/8840656 to your computer and use it in GitHub Desktop.
Rounding number to N decimal place
num = 2.443242342
num = num.toFixed(4) # num will be equal to 2.4432
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment