Skip to content

Instantly share code, notes, and snippets.

@slonoed
Created September 21, 2017 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slonoed/a6804a2bf21ac11ce6c2fd467323452b to your computer and use it in GitHub Desktop.
Save slonoed/a6804a2bf21ac11ce6c2fd467323452b to your computer and use it in GitHub Desktop.
Round after first N digits
/*
101 - 100
12 - 12
12.3 - 12
1.45 - 1.4
*/
N = 2
parseFloat(a.toPrecision(N))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment