Created
May 22, 2022 07:49
-
-
Save nomanoff/e80a8af8632b315d9094bd8b1b4cb82b to your computer and use it in GitHub Desktop.
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
24.toFixed(2); // Syntax Error | |
24. toFixed(2); // Syntax Error | |
24 .toFixed(2); // "24.00" | |
24 . toFixed(2); // "24.00" | |
24.0.toFixed(2); // "24.00" | |
24..toFixed(2); // "24.00" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment