Created
June 4, 2021 13:49
-
-
Save JordanDelcros/86f454c5e832c5c4e6d4b00ff739a8fb to your computer and use it in GitHub Desktop.
Fixed number without .toFixed()
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
// Default 2 numbers after comma | |
function fixNumber( number, precision = 1e2 ){ | |
return Math.sign(number) * (Math.round((Math.abs(number) + Number.EPSILON) * precision) / precision); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment