Last active
June 26, 2026 19:57
-
-
Save CamiloVelasquezBotero/72bfb77725a0063964b9f20f3e98ca4f to your computer and use it in GitHub Desktop.
Format Currency 'COP, USD, EUR...'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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