Skip to content

Instantly share code, notes, and snippets.

@jupegarnica
Created August 30, 2021 07:28
Show Gist options
  • Save jupegarnica/a56259277ba41854dc53d45c63daed62 to your computer and use it in GitHub Desktop.
Save jupegarnica/a56259277ba41854dc53d45c63daed62 to your computer and use it in GitHub Desktop.
const toCurrency = (n:number, curr:string, LanguageFormat:string|undefined = undefined):string =>
Intl.NumberFormat(LanguageFormat, { style: 'currency', currency: curr }).format(n);
console.log(
toCurrency(123456.789, 'EUR') // €123,456.79 | currency: Euro | currencyLangFormat: Local
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment