I need to get this (15 321,35) now I have this 15321.35 I have some mistake, and cant find, any ideas?
function money(cislo) {
var cifry = cislo.toString();
var koma = /\./g,
probel = /(\d)(?=(\d{3})+([^\d]|$))/g;
console.log(cifry.replace(koma, ',').replace(probel, '$1 ');
}
var cislo = 15321.35;
money(cislo);