Skip to content

Instantly share code, notes, and snippets.

@4drian-sanchez
Created May 10, 2023 01:00
Show Gist options
  • Save 4drian-sanchez/71948b62b3e8ff9234035f8b6dd4050e to your computer and use it in GitHub Desktop.
Save 4drian-sanchez/71948b62b3e8ff9234035f8b6dd4050e to your computer and use it in GitHub Desktop.
Formatear numeros a dolares
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