Skip to content

Instantly share code, notes, and snippets.

@jcreamer898
Last active February 2, 2018 01:35
Show Gist options
  • Select an option

  • Save jcreamer898/a1028b81c0189824017af5b2d88a68d2 to your computer and use it in GitHub Desktop.

Select an option

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