CommBank Personal Loan Repayment Calculator
Calculate your estimated monthly repayments for a personal loan from CommBank.
Not calculated yet.
Loan Amount: ${formatCurrency(loanAmount)}
Loan Term: ${loanTerm} years
Interest Rate: ${(interestRate * 100).toFixed(2)}%
`; repaymentSteps += `Formulas:
Monthly Repayment = Loan Amount × Monthly Interest Rate / (1 – (1 + Monthly Interest Rate) ^ -Number of Payments)
`; repaymentSteps += `Result:
Estimated Monthly Repayment: ${formatCurrency(monthlyRepayment)}
`; if (document.getElementById(“calculationStepsRepayment”).style.display === “block”) { document.getElementById(“calculationStepsRepayment”).innerHTML = repaymentSteps; } } function resetCalculator(){ document.querySelectorAll(“#calculator input”).forEach(el => el.value = “”); repaymentSteps = “”; document.getElementById(“calculationStepsRepayment”).innerHTML = “
Not calculated yet.
“; } function toggleRepaymentSteps(){ const steps = document.getElementById(“calculationStepsRepayment”); const arrow = document.getElementById(“toggleArrowRepayment”); if (steps.style.display === “none” || steps.style.display === “”) { steps.style.display = “block”; arrow.style.transform = “rotate(180deg)”; steps.innerHTML = repaymentSteps || “Not calculated yet.
“; } else { steps.style.display = “none”; arrow.style.transform = “rotate(0deg)”; } } function formatCurrency(n) { return currencySymbol + n.toFixed(2) + ” ” + fixedCurrency; }