JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="teste">
JavaScript
function PV(rate, nper, pmt)
{
return pmt / rate * (1 - Math.pow(1 + rate, -nper));
}
var valor = PV(0.025, 48, 2052.5);
document.getElementById('teste').value = valor.toFixed(2);