Skip to content

Instantly share code, notes, and snippets.

@kerminz
Last active April 27, 2019 10:05
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 kerminz/8ab2d87e11eebcc872b63f561c1e52ad to your computer and use it in GitHub Desktop.
Save kerminz/8ab2d87e11eebcc872b63f561c1e52ad to your computer and use it in GitHub Desktop.
Number To Local Currency Format
// Convert any number to a local currency format with Intl Objects
function numToCurr(number) {
return new Intl.NumberFormat("de-DE", {style: "currency", currency: "EUR"}).format(number)
}
numToCurr(50.00)
// expected output: "50,00 €"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment