Last active
December 23, 2015 22:21
-
-
Save genert/4faea93b4339c7a04b42 to your computer and use it in GitHub Desktop.
Rounding. Example Round(3.44444) => "3.44"
This file contains 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
function Round (n) { | |
return Number(`${Math.round(`${n}e${2}`)}e-${2}`).toString(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment