Last active
February 14, 2023 13:04
-
-
Save dcortesnet/90e39d16277c06b1c663c49e78706b6f to your computer and use it in GitHub Desktop.
Javascript formato de moneda dinero
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
| new Intl.NumberFormat('es-CL', { | |
| style: 'currency', | |
| currency: 'CLP', | |
| }).format(1500); | |
| // https://medium.com/geekculture/automatic-number-format-with-javascript-all-countries-8b457ac0b491 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment