Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save CamiloVelasquezBotero/72bfb77725a0063964b9f20f3e98ca4f to your computer and use it in GitHub Desktop.

Select an option

Save CamiloVelasquezBotero/72bfb77725a0063964b9f20f3e98ca4f to your computer and use it in GitHub Desktop.
Format Currency 'COP, USD, EUR...'
export function formatCurrency(amount:number) {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
}).format(amount)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment