Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 3, 2021 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/376e188ac5da19e35db121e6625c59a8 to your computer and use it in GitHub Desktop.
Save parzibyte/376e188ac5da19e35db121e6625c59a8 to your computer and use it in GitHub Desktop.
// https://parzibyte.me/blog
const numero = 3500.51;
const formateado = numero.toLocaleString("en", {
style: "currency",
currency: "EUR"
});
console.log(formateado);
// Salida: €3,500.51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment