VA Refinance Calculator – Navy Federal
Calculate your potential savings when refinancing your VA loan with Navy Federal.
Not calculated yet.
Loan Amount: ${formatCurrency(loanAmount)}
Current Rate: ${(currentRate*100).toFixed(2)}%
New Rate: ${(newRate*100).toFixed(2)}%
Loan Term: ${loanTerm} years
Current Monthly Payment: ${formatCurrency(monthlyPayment)}
`; refinanceSteps += `Formulas:
New Monthly Payment = (Loan Amount × New Rate / 12) + (Loan Amount / Loan Term / 12)
Total Savings = (Current Monthly Payment × Loan Term) – (New Monthly Payment × Loan Term)
`; refinanceSteps += `Results:
Estimated New Monthly Payment: ${formatCurrency(newMonthlyPaymentValue)}
Total Savings over Loan Term: ${formatCurrency(totalSavings)}
`; if(document.getElementById(“calculationStepsRefinance”).style.display===”block”){ document.getElementById(“calculationStepsRefinance”).innerHTML = refinanceSteps; } } function resetRefinance(){ document.querySelectorAll(“#va-refinance-calculator input”).forEach(el=>el.value=””); refinanceSteps=””; document.getElementById(“calculationStepsRefinance”).innerHTML=”
Not calculated yet.
“; } function toggleRefinanceSteps(){ const s=document.getElementById(“calculationStepsRefinance”); const a=document.getElementById(“toggleArrowRefinance”); if(s.style.display===”none”||s.style.display===””){ s.style.display=”block”;a.style.transform=”rotate(180deg)”; s.innerHTML=refinanceSteps||”Not calculated yet.
“; }else{s.style.display=”none”;a.style.transform=”rotate(0deg)”;} } function formatCurrency(n){return currencySymbol+n.toFixed(2)+” “+fixedCurrency;}