real formatação javascript code example
Example: js money format br
var atual = 600000.00;
//com R$
var f = atual.toLocaleString('pt-br',{style: 'currency', currency: 'BRL'});
var atual = 600000.00;
//com R$
var f = atual.toLocaleString('pt-br',{style: 'currency', currency: 'BRL'});