Created
October 11, 2017 06:10
-
-
Save sfengyuan/dbd177c47478dabb8eef90187efecf67 to your computer and use it in GitHub Desktop.
Javascript
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(value, decimals) { | |
return Number(Math.round(value+'e'+decimals)+'e-'+decimals); | |
} | |
//round(1.005, 2); | |
// 1.01 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment