Skip to content

Instantly share code, notes, and snippets.

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 erikfig/1d600f6b6c30a2d31355a01e17332d98 to your computer and use it in GitHub Desktop.
Save erikfig/1d600f6b6c30a2d31355a01e17332d98 to your computer and use it in GitHub Desktop.
const number = 123456999.789;
let numberFormated = new Intl.NumberFormat('pt-BR', { style: 'decimal', minimumFractionDigits: 2, maximumFractionDigits :2}).format(number);
console.log(numberFormated.replace(/\./g, '').replace(',', '.'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment