Affordability Ratio Calculator
Monthly Housing Costs ($): Gross Monthly Income ($): Calculate function calculate() { const housingCosts = parseFloat(document.getElementById(“monthlyHousingCosts”).value); const income = parseFloat(document.getElementById(“grossMonthlyIncome”).value); if (isNaN(housingCosts) || isNaN(income) || income
