Last active
August 25, 2020 06:03
-
-
Save jasonsturges/61a56c04269e86239baaed9f7e1c32c6 to your computer and use it in GitHub Desktop.
Math.log10
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
Math.log10(n); | |
// Equivalent polyfill: | |
Math.log(n) * Math.LOG10E |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment