Skip to content

Instantly share code, notes, and snippets.

@fczbkk
Last active August 1, 2019 04:46
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 fczbkk/ab7b65bf8ce2f3e348de795597afe48f to your computer and use it in GitHub Desktop.
Save fczbkk/ab7b65bf8ce2f3e348de795597afe48f to your computer and use it in GitHub Desktop.
Simple currency formatter
function formatAsCurrency (value = 0, currency = '$') {
const formattedValue = (value/100).toFixed(2)
return currency + formattedValue
}
formatAsCurrency(100)
// $1.00
formatAsCurrency(123)
// $1.23
formatAsCurrency(456, '€')
// €4.56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment