-
-
Save 4drian-sanchez/71948b62b3e8ff9234035f8b6dd4050e to your computer and use it in GitHub Desktop.
Formatear numeros a dolares
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
const formatearPresupuesto = (cantidad = '') => { | |
const formatter = new Intl.NumberFormat('en-US', { | |
style: 'currency', | |
currency: 'USD', | |
}); | |
return formatter.format(cantidad) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment