0
I’m getting the following values
<h3 id="valor">Valor Mensalidade: R${{curso_se.preco_curso}}</h3>
<h1 style="color:green;">PrimeiraMensalidade:R${{curso_se.preco_matricula}}</h1>
But they are coming with point and without separation of houses from the thousand, for example: 2.432,00
I had tried to give a replace but it didn’t work
$("#valor").val(replace(".", ","));
take a look at this so-called lib numbro is to form number, currency, percentage, and see if it helps you
– Neuber Oliveira
tries: {curso_se.path_name.replace('.', ',')}}
– JuniorNunes