-
-
Save norbert-gaulia/490e5fc15cad52505e7729f74acbd40c to your computer and use it in GitHub Desktop.
Very fast rounding in JavaScript
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
| Number.round = function() { | |
| return (this + 0.5) << 0; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment