Skip to content

Instantly share code, notes, and snippets.

@nomanoff
Created May 22, 2022 07:49
Show Gist options
  • Save nomanoff/e80a8af8632b315d9094bd8b1b4cb82b to your computer and use it in GitHub Desktop.
Save nomanoff/e80a8af8632b315d9094bd8b1b4cb82b to your computer and use it in GitHub Desktop.
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