Skip to content

Instantly share code, notes, and snippets.

@allysonsilva
Last active June 28, 2018 14:05
Show Gist options
  • Save allysonsilva/809dbb6861deb1bc9329065423406e77 to your computer and use it in GitHub Desktop.
Save allysonsilva/809dbb6861deb1bc9329065423406e77 to your computer and use it in GitHub Desktop.
📢 Native JavaScript Currency [NumberFormat]
let formatter = new Intl.NumberFormat('pt-BR', {
style: 'currency',
currency: 'BRL',
currencyDisplay: "symbol",
minimumFractionDigits: 2,
});
formatter.format('123456.90')); // R$ 123.456,90
formatter.format('12.3456.90')); // NaN
formatter.format('12,3456.90')); // NaN
formatter.format('123456,90')); // NaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment