Skip to content

Instantly share code, notes, and snippets.

@jcreamer898
Last active February 2, 2018 01:35
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/a1028b81c0189824017af5b2d88a68d2 to your computer and use it in GitHub Desktop.
Save jcreamer898/a1028b81c0189824017af5b2d88a68d2 to your computer and use it in GitHub Desktop.
Stuff for my typescript blog
const formatPrice = (num, symbol = "$") =>
`${symbol}${num.toFixed(2)}`; formatPrice("1234");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment