showing results for - "javascript intl numberformat reais"
Erica
29 Jul 2020
1const currencyFormatter = new Intl.NumberFormat('pt-BR', { 
2   style: 'currency', currency: 'BRL' 
3});
4
5currencyFormatter.format(100); // R$ 100,00
6