Created
September 21, 2017 07:01
-
-
Save slonoed/a6804a2bf21ac11ce6c2fd467323452b to your computer and use it in GitHub Desktop.
Round after first N digits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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