I have a string to be passed by the form and would like to replace some of its characters so that it is in numeral form:
if(form1.autonomoBonusBruto.value.includes("R$")){
form1.autonomoBonusBruto.value.replace("R$","");
alert(form1.autonomoBonusBruto.value);
}