ccc

JS: Format Number

function toSpanish(x){
  return x.toLocaleString('es-ES');
}

b = 123456.78;
b = toSpanish(b);
console.log(b);

No hay comentarios:

Publicar un comentario