Skip to content

Instantly share code, notes, and snippets.

@jcreamer898
Created February 2, 2018 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcreamer898/fcd43bd4042361899e7eb7de217c40be to your computer and use it in GitHub Desktop.
Save jcreamer898/fcd43bd4042361899e7eb7de217c40be to your computer and use it in GitHub Desktop.
const formatPrice = (num: number, symbol = "$": string) =>
`${symbol}${num.toFixed(2)}`; formatPrice("1234");
// num.toFixed is not a function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment