Current Second Home Affordability Calculator
Second Home Affordability Calculator
Estimate the affordability of your second home based on your financial details.
Not calculated yet.
Annual Income: $${income}
Existing Debt: $${existingDebt}
Current Monthly Mortgage Payment: $${monthlyPayment}
Price of Second Home: $${secondHomePrice}
Down Payment: $${downPayment}
Interest Rate: ${interestRate * 100}%
Loan Term: ${loanTerm} years
`; affordabilitySteps += `Formulas:
Monthly Loan Payment = Loan Amount × Monthly Interest Rate / (1 – (1 + Monthly Interest Rate) ^ -Number of Payments)
Affordability = Income × 28% – (Existing Debt + Current Mortgage + Monthly Loan Payment)
`; affordabilitySteps += `Results:
Estimated Affordability: $${affordability.toFixed(2)}
`; if (document.getElementById(“calculationStepsAffordability”).style.display === “block”) { document.getElementById(“calculationStepsAffordability”).innerHTML = affordabilitySteps; } } function resetAffordability() { document.querySelectorAll(“#calculator input”).forEach(el => el.value = “”); affordabilitySteps = “”; document.getElementById(“calculationStepsAffordability”).innerHTML = “
Not calculated yet.
“; } function toggleAffordabilitySteps() { const s = document.getElementById(“calculationStepsAffordability”); const a = document.getElementById(“toggleArrowAffordability”); if (s.style.display === “none” || s.style.display === “”) { s.style.display = “block”; a.style.transform = “rotate(180deg)”; s.innerHTML = affordabilitySteps || “Not calculated yet.
“; } else { s.style.display = “none”; a.style.transform = “rotate(0deg)”; } }