Downpayment Car Calculator

Down Payment Car Calculator: Plan Your New Car Purchase :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –shadow-color: rgba(0,0,0,0.1); –card-background: #fff; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); margin: 0; padding: 0; line-height: 1.6; } .container { max-width: 1000px; margin: 20px auto; padding: 20px; background-color: var(–card-background); border-radius: 8px; box-shadow: 0 4px 12px var(–shadow-color); display: flex; flex-direction: column; } header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid var(–border-color); padding-bottom: 20px; } header h1 { color: var(–primary-color); margin-bottom: 10px; } header p { font-size: 1.1em; color: #555; } .loan-calc-container { background-color: var(–card-background); padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px var(–shadow-color); margin-bottom: 30px; } .loan-calc-container h2 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } .input-group { margin-bottom: 18px; position: relative; } .input-group label { display: block; margin-bottom: 8px; font-weight: bold; color: #444; } .input-group input[type="number"], .input-group input[type="text"], .input-group select { width: calc(100% – 20px); padding: 10px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 1em; box-sizing: border-box; /* Include padding and border in the element's total width and height */ } .input-group input[type="number"]:focus, .input-group input[type="text"]:focus, .input-group select:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.2); } .input-group .helper-text { font-size: 0.85em; color: #666; margin-top: 5px; display: block; } .input-group .error-message { color: #dc3545; font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .input-group .error-message.visible { display: block; } .button-group { text-align: center; margin-top: 25px; } .button-group button, .button-group .copy-button { background-color: var(–primary-color); color: white; border: none; padding: 12px 25px; border-radius: 5px; font-size: 1em; cursor: pointer; margin: 5px; transition: background-color 0.3s ease; } .button-group button:hover, .button-group .copy-button:hover { background-color: #003366; } .button-group .reset-button { background-color: #6c757d; } .button-group .reset-button:hover { background-color: #5a6268; } .results-container { background-color: var(–card-background); padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px var(–shadow-color); margin-top: 30px; } .results-container h2 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } .main-result { text-align: center; margin-bottom: 20px; padding: 15px; background-color: var(–primary-color); color: white; border-radius: 5px; font-size: 1.8em; font-weight: bold; } .main-result span { font-size: 0.7em; display: block; color: #eee; } .intermediate-results { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 25px; padding: 15px; border: 1px solid var(–border-color); border-radius: 5px; background-color: #fdfdfd; } .intermediate-results div { text-align: center; margin: 10px 5px; padding: 10px; min-width: 120px; } .intermediate-results span { font-weight: bold; font-size: 1.3em; display: block; color: var(–primary-color); } .formula-explanation { font-size: 0.9em; color: #555; text-align: center; margin-top: 15px; } .chart-container { margin-top: 30px; padding: 20px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); box-shadow: 0 2px 8px var(–shadow-color); } .chart-container h3 { text-align: center; color: var(–primary-color); margin-bottom: 15px; } canvas { display: block; margin: 0 auto; max-width: 100%; height: 300px; } .table-container { margin-top: 30px; overflow-x: auto; /* For responsiveness on small screens */ } .table-container caption { font-weight: bold; font-size: 1.2em; color: var(–primary-color); margin-bottom: 15px; text-align: center; } table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } th, td { padding: 10px 12px; text-align: left; border: 1px solid var(–border-color); } thead th { background-color: var(–primary-color); color: white; } tbody tr:nth-child(even) { background-color: #f2f2f2; } tbody td { background-color: var(–card-background); } .article-section { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(–border-color); } .article-section h2, .article-section h3 { color: var(–primary-color); margin-bottom: 15px; } .article-section h2 { font-size: 1.8em; } .article-section h3 { font-size: 1.4em; } .article-section p { margin-bottom: 15px; } .article-section ul, .article-section ol { margin-left: 25px; margin-bottom: 15px; } .article-section li { margin-bottom: 8px; } .faq-list { list-style: none; padding: 0; } .faq-list li { margin-bottom: 20px; border-left: 3px solid var(–primary-color); padding-left: 15px; } .faq-list h3 { margin-bottom: 5px; font-size: 1.1em; color: #333; } .faq-list p { margin-bottom: 0; } .internal-links { list-style: none; padding: 0; } .internal-links li { margin-bottom: 15px; } .internal-links a { color: var(–primary-color); text-decoration: none; font-weight: bold; } .internal-links a:hover { text-decoration: underline; } .internal-links p { font-size: 0.9em; color: #555; margin-bottom: 5px; } /* Responsive adjustments */ @media (max-width: 768px) { .container { margin: 10px; padding: 15px; } .intermediate-results { flex-direction: column; align-items: center; } .intermediate-results div { margin: 10px 0; } .button-group button, .button-group .copy-button { width: 90%; margin: 5px 0; } }

Down Payment Car Calculator

Understand the impact of your down payment on your car loan and monthly affordability.

Car Down Payment Calculator

Enter the total price of the car.
Typically 3, 4, 5, or 6 years.
Your estimated APR.
Cash or trade-in value you're putting down.

Your Loan Breakdown

$0.00 Estimated Monthly Payment
$0.00 Loan Amount
$0.00 Total Interest Paid
$0.00 Total Amount Repaid
Monthly Payment = P [ i(1 + i)^n ] / [ (1 + i)^n – 1]
where P = Loan Amount, i = Monthly Interest Rate, n = Total Number of Payments.

Loan Payment Distribution

Loan Details Table
Month Payment Principal Paid Interest Paid Remaining Balance

What is a Down Payment for a Car?

A down payment for a car is the upfront sum of money you pay when purchasing a vehicle. It's the portion of the car's total price that you pay directly, rather than financing through a loan. Think of it as your initial contribution to owning the car. The remaining balance is then financed over time, typically through an auto loan.

A significant down payment can dramatically influence the terms of your car loan and your overall car-buying experience. It can lead to lower monthly payments, less interest paid over the life of the loan, and potentially a better interest rate from the lender. It also reduces the amount you need to borrow, which can be crucial if your credit history is less than perfect.

Who should use a down payment car calculator? Anyone planning to buy a car and considering making a down payment should use this tool. Whether you're a first-time buyer or looking to upgrade, understanding how your down payment affects your loan terms is essential. It's particularly useful for individuals aiming to:

  • Lower their monthly car payments.
  • Reduce the total interest paid over the loan's life.
  • Avoid being "upside down" on their loan (owing more than the car is worth).
  • Qualify for a loan with a smaller loan amount.

Common misconceptions about car down payments:

  • Myth: You always need a large down payment (e.g., 20%). While 20% is often cited for mortgages, for cars, smaller down payments are common, though larger ones are always beneficial.
  • Myth: A down payment only affects your monthly payment. It also impacts the total interest, loan approval chances, and the car's resale value relative to your loan balance.
  • Myth: Trade-in value doesn't count as a down payment. It absolutely does; it's essentially cash applied directly to the car's purchase price.

Down Payment Car Calculator Formula and Mathematical Explanation

The core of our down payment car calculator relies on the standard auto loan payment formula, adjusted to account for the initial down payment reducing the principal loan amount.

Calculating the Loan Amount

First, we determine the actual amount you need to finance:

Loan Amount (P) = Car Price – Down Payment

Calculating the Monthly Payment

The monthly payment (M) is calculated using the following formula:

M = P [ i(1 + i)^n ] / [ (1 + i)^n – 1]

Let's break down the variables:

Variable Meaning Unit Typical Range
P Principal Loan Amount (Car Price – Down Payment) Dollars ($) $1,000 – $100,000+
i Monthly Interest Rate Decimal (Annual Rate / 12 / 100) 0.002 – 0.01 (approx. 2.4% – 12% APR)
n Total Number of Payments (Loan Term in Years * 12) Months 24 – 72 (or more)
M Monthly Loan Payment Dollars ($) Calculated value

Calculating Total Interest Paid

This is the total amount of interest you'll pay over the life of the loan:

Total Interest Paid = (Monthly Payment * Total Number of Payments) – Loan Amount

Calculating Total Amount Repaid

This is the sum of all your payments, including principal and interest:

Total Amount Repaid = Monthly Payment * Total Number of Payments

Practical Examples of Using the Down Payment Car Calculator

Example 1: Optimizing for Lower Monthly Payments

Scenario: Sarah is looking at a car priced at $30,000. She has $5,000 saved for a down payment and can afford a 5-year loan at an 7% APR. She wants to see how her monthly payment is affected.

Inputs:

  • Car Price: $30,000
  • Down Payment: $5,000
  • Loan Term: 5 years (60 months)
  • Interest Rate: 7% APR

Calculator Output:

  • Loan Amount: $25,000
  • Estimated Monthly Payment: $495.03
  • Total Interest Paid: $4,701.80
  • Total Amount Repaid: $29,701.80

Financial Interpretation: Sarah will finance $25,000. Over 5 years, she'll pay approximately $4,701.80 in interest. Her monthly car payment will be around $495. This calculation helps her budget effectively for her new vehicle.

Example 2: Maximizing Down Payment for Minimum Interest

Scenario: John is buying a $40,000 SUV. He wants to minimize the total interest paid. He has $10,000 available for a down payment and is considering a 5-year loan at 6% APR. He uses the calculator to see the impact of his $10,000 down payment.

Inputs:

  • Car Price: $40,000
  • Down Payment: $10,000
  • Loan Term: 5 years (60 months)
  • Interest Rate: 6% APR

Calculator Output:

  • Loan Amount: $30,000
  • Estimated Monthly Payment: $566.49
  • Total Interest Paid: $3,989.40
  • Total Amount Repaid: $33,989.40

Financial Interpretation: By putting down $10,000, John finances $30,000. He pays about $3,989.40 in interest. If he had only put down $5,000 (financing $35,000), his monthly payment would be higher ($655.07) and his total interest paid would be significantly more ($4,304.20). This example highlights how a larger down payment car strategy saves money in the long run.

How to Use This Down Payment Car Calculator

  1. Enter Car Price: Input the total purchase price of the vehicle you intend to buy.
  2. Specify Loan Term: Select the duration of your loan in years. Common terms are 3, 4, 5, or 6 years. Shorter terms mean higher monthly payments but less interest paid overall.
  3. Input Annual Interest Rate (APR): Enter the Annual Percentage Rate (APR) you expect to receive on your auto loan. This is a crucial factor affecting your total cost.
  4. Enter Your Down Payment: Input the amount of cash or trade-in value you plan to use as a down payment.
  5. Click 'Calculate': Press the calculate button to see the results.

How to Read the Results:

  • Estimated Monthly Payment: This is the amount you'll likely pay each month for your car loan. It's the most critical figure for budgeting.
  • Loan Amount: The actual amount you will borrow after your down payment is applied.
  • Total Interest Paid: The total sum of interest you will pay over the entire loan term. A lower number here means you're saving money.
  • Total Amount Repaid: The sum of your loan amount and all the interest paid.

Decision-Making Guidance:

Use the calculator to experiment! Try different down payment amounts. See how increasing your down payment reduces your monthly payment and total interest. If the monthly payment is too high, consider increasing your down payment or exploring cars within a lower price range. If the total interest paid is a concern, a larger down payment or a shorter loan term are your best options.

Key Factors That Affect Down Payment Car Results

Several elements influence the outcome of your down payment calculations and your overall car loan:

  • Car Price: The higher the car's price, the larger the potential loan amount and the more significant the impact of your down payment. A $5,000 down payment on a $15,000 car is 33%, while on a $50,000 car, it's only 10%.
  • Down Payment Amount: This is the direct input. A larger down payment directly reduces the principal loan amount (P), leading to lower monthly payments (M) and less total interest paid.
  • Annual Interest Rate (APR): This is a critical factor. A higher APR significantly increases the total interest paid and your monthly payment. Even a small difference in APR can mean thousands of dollars over the life of the loan. Securing a lower APR often requires a good credit score and sometimes a larger down payment.
  • Loan Term (Months): A longer loan term results in lower monthly payments but substantially increases the total interest paid because the principal is paid down more slowly. Conversely, a shorter term means higher monthly payments but significantly less interest overall.
  • Credit Score: Your creditworthiness directly impacts the APR you'll be offered. A higher credit score typically qualifies you for lower interest rates, reducing your overall borrowing cost. Lenders see borrowers with good credit as less risky.
  • Loan Fees and Other Charges: Some loans may include origination fees, documentation fees, or other charges rolled into the loan amount. These increase the principal (P) and therefore the total interest paid. Always read the fine print.
  • Taxes and Registration Fees: While not directly part of the loan calculation, these are part of the total out-the-door cost of the car. They might influence how much you can afford for the down payment or loan payments.
  • Inflation and Economic Conditions: Broad economic factors can influence interest rates set by central banks, indirectly affecting the APRs offered by lenders.

Frequently Asked Questions (FAQ)

  • How much should my down payment be?

    While there's no single answer, aiming for 10-20% of the car's price is a common recommendation. However, any amount you can afford that reduces your loan principal is beneficial. Even a small down payment helps lower your monthly payments and total interest paid.

  • Can I use a trade-in as a down payment?

    Yes, absolutely. The value of your trade-in is applied directly to the purchase price of the new car, effectively acting as your down payment.

  • What happens if I can't make a down payment?

    It's possible to finance 100% of the car's value (a zero-down car loan), but this often comes with higher interest rates, higher monthly payments, and a greater risk of being upside down on your loan. It requires strong credit.

  • Does a larger down payment guarantee a lower interest rate?

    Not directly, but it can help. Lenders often see a larger down payment as a sign of financial responsibility and lower risk, which might make them more willing to offer a better rate, especially if your credit score is borderline.

  • How does the loan term affect my down payment strategy?

    If you choose a longer loan term to get lower monthly payments, the impact of your down payment on reducing total interest paid becomes even more crucial. A larger down payment is key to mitigating the higher interest costs associated with longer terms.

  • Can I change my down payment after calculating?

    Yes, this calculator is designed for 'what-if' scenarios. You can adjust the down payment amount and recalculate to see how it impacts your monthly payment and total interest paid.

  • What is the difference between APR and interest rate?

    APR (Annual Percentage Rate) is a broader measure of the cost of borrowing money. It includes the interest rate plus certain fees or other charges associated with the loan, presented as a yearly rate. For car loans, APR is the most important figure to compare.

  • Does the calculator account for taxes and fees?

    This specific calculator focuses on the loan principal, interest, and term. Taxes, registration fees, and dealer fees are typically added to the "out-the-door" price but are not directly part of the loan amortization calculation itself, though they do influence the total amount you'll ultimately pay. Ensure your car price input reflects the financed amount after all initial fees are considered.

Related Tools and Internal Resources

var carPriceInput = document.getElementById('carPrice'); var loanTermInput = document.getElementById('loanTerm'); var interestRateInput = document.getElementById('interestRate'); var downPaymentInput = document.getElementById('downPaymentAmount'); var resultDiv = document.getElementById('result'); var loanAmountResultSpan = document.getElementById('loanAmountResult'); var totalInterestResultSpan = document.getElementById('totalInterestResult'); var totalRepaidResultSpan = document.getElementById('totalRepaidResult'); var loanTableBody = document.getElementById('loanTableBody'); var loanChartCanvas = document.getElementById('loanChart').getContext('2d'); var loanChartInstance = null; function formatCurrency(amount) { return amount.toLocaleString('en-US', { style: 'currency', currency: 'USD' }); } function formatPercentage(rate) { return rate.toFixed(2) + '%'; } function validateInput(value, id, min, max = Infinity) { var inputElement = document.getElementById(id); var errorElement = inputElement.nextElementSibling; // Assumes error message is the next sibling var isValid = true; if (value === " || isNaN(parseFloat(value))) { errorElement.textContent = 'Please enter a valid number.'; errorElement.classList.add('visible'); isValid = false; } else { var numericValue = parseFloat(value); if (numericValue max) { errorElement.textContent = 'Value cannot exceed ' + max + '.'; errorElement.classList.add('visible'); isValid = false; } else { errorElement.classList.remove('visible'); } } return isValid; } function calculateLoan() { var carPrice = parseFloat(carPriceInput.value); var loanTermYears = parseInt(loanTermInput.value); var interestRate = parseFloat(interestRateInput.value); var downPayment = parseFloat(downPaymentInput.value); // Input validation var isCarPriceValid = validateInput(carPriceInput.value, 'carPrice', 0); var isLoanTermValid = validateInput(loanTermInput.value, 'loanTerm', 1); var isInterestRateValid = validateInput(interestRateInput.value, 'interestRate', 0); var isDownPaymentValid = validateInput(downPaymentInput.value, 'downPaymentAmount', 0); if (!isCarPriceValid || !isLoanTermValid || !isInterestRateValid || !isDownPaymentValid) { resultDiv.innerHTML = '$0.00Est. Monthly Payment'; loanAmountResultSpan.textContent = '$0.00'; totalInterestResultSpan.textContent = '$0.00'; totalRepaidResultSpan.textContent = '$0.00'; loanTableBody.innerHTML = "; updateChart([], []); return; } var loanAmount = carPrice – downPayment; var monthlyInterestRate = (interestRate / 100) / 12; var numberOfPayments = loanTermYears * 12; loanAmountResultSpan.textContent = formatCurrency(loanAmount); var monthlyPayment = 0; if (monthlyInterestRate > 0) { monthlyPayment = loanAmount * (monthlyInterestRate * Math.pow(1 + monthlyInterestRate, numberOfPayments)) / (Math.pow(1 + monthlyInterestRate, numberOfPayments) – 1); } else { monthlyPayment = loanAmount / numberOfPayments; } var totalRepaid = monthlyPayment * numberOfPayments; var totalInterestPaid = totalRepaid – loanAmount; resultDiv.innerHTML = formatCurrency(monthlyPayment) + 'Est. Monthly Payment'; totalInterestResultSpan.textContent = formatCurrency(totalInterestPaid); totalRepaidResultSpan.textContent = formatCurrency(totalRepaid); // Populate table and chart data var tableData = []; var remainingBalance = loanAmount; var principalPaidArray = []; var interestPaidArray = []; for (var i = 0; i < numberOfPayments; i++) { var interestForMonth = remainingBalance * monthlyInterestRate; var principalForMonth = monthlyPayment – interestForMonth; // Adjust last payment to account for rounding errors if (i === numberOfPayments – 1) { principalForMonth = remainingBalance; monthlyPayment = principalForMonth + interestForMonth; totalRepaid = (monthlyPayment * i) + monthlyPayment; totalInterestPaid = totalRepaid – loanAmount; totalRepaidResultSpan.textContent = formatCurrency(totalRepaid); totalInterestResultSpan.textContent = formatCurrency(totalInterestPaid); } remainingBalance -= principalForMonth; if (remainingBalance < 0) remainingBalance = 0; // Prevent negative balance due to rounding tableData.push({ month: i + 1, payment: monthlyPayment, principal: principalForMonth, interest: interestForMonth, balance: remainingBalance }); principalPaidArray.push(principalForMonth); interestPaidArray.push(interestForMonth); } populateLoanTable(tableData); updateChart(principalPaidArray, interestPaidArray); } function populateLoanTable(data) { loanTableBody.innerHTML = ''; // Clear existing rows for (var i = 0; i < data.length; i++) { var row = loanTableBody.insertRow(); row.innerHTML = '' + data[i].month + '' + '' + formatCurrency(data[i].payment) + '' + '' + formatCurrency(data[i].principal) + '' + '' + formatCurrency(data[i].interest) + '' + '' + formatCurrency(data[i].balance) + ''; } } function updateChart(principalData, interestData) { if (loanChartInstance) { loanChartInstance.destroy(); // Destroy previous chart if it exists } var labels = Array.apply(null, {length: principalData.length}).map(Number.call, Number).map(function(i){ return i + 1; }); loanChartInstance = new Chart(loanChartCanvas, { type: 'bar', // Changed to bar for better visualization of monthly breakdown data: { labels: labels, datasets: [{ label: 'Principal Paid Per Month', data: principalData, backgroundColor: 'rgba(0, 74, 153, 0.6)', // Primary color variant borderColor: 'rgba(0, 74, 153, 1)', borderWidth: 1 }, { label: 'Interest Paid Per Month', data: interestData, backgroundColor: 'rgba(40, 167, 69, 0.6)', // Success color variant borderColor: 'rgba(40, 167, 69, 1)', borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, scales: { x: { title: { display: true, text: 'Month' } }, y: { title: { display: true, text: 'Amount ($)' }, beginAtZero: true } }, plugins: { tooltip: { mode: 'index', intersect: false, }, title: { display: true, text: 'Monthly Principal vs. Interest Payments' } }, hover: { mode: 'nearest', intersect: true } } }); } function copyResults() { var carPrice = parseFloat(carPriceInput.value); var loanTermYears = parseInt(loanTermInput.value); var interestRate = parseFloat(interestRateInput.value); var downPayment = parseFloat(downPaymentInput.value); var loanAmount = carPrice – downPayment; var monthlyInterestRate = (interestRate / 100) / 12; var numberOfPayments = loanTermYears * 12; var monthlyPayment = 0; if (monthlyInterestRate > 0) { monthlyPayment = loanAmount * (monthlyInterestRate * Math.pow(1 + monthlyInterestRate, numberOfPayments)) / (Math.pow(1 + monthlyInterestRate, numberOfPayments) – 1); } else { monthlyPayment = loanAmount / numberOfPayments; } var totalRepaid = monthlyPayment * numberOfPayments; var totalInterestPaid = totalRepaid – loanAmount; var resultsText = "— Down Payment Car Calculator Results —\n\n"; resultsText += "Key Assumptions:\n"; resultsText += " Car Price: " + formatCurrency(carPrice) + "\n"; resultsText += " Down Payment: " + formatCurrency(downPayment) + "\n"; resultsText += " Loan Term: " + loanTermYears + " years (" + numberOfPayments + " months)\n"; resultsText += " Annual Interest Rate: " + formatPercentage(interestRate) + "\n\n"; resultsText += "Loan Details:\n"; resultsText += " Loan Amount: " + formatCurrency(loanAmount) + "\n"; resultsText += " Estimated Monthly Payment: " + formatCurrency(monthlyPayment) + "\n"; resultsText += " Total Interest Paid: " + formatCurrency(totalInterestPaid) + "\n"; resultsText += " Total Amount Repaid: " + formatCurrency(totalRepaid) + "\n"; // Use a temporary textarea for copying var textArea = document.createElement("textarea"); textArea.value = resultsText; textArea.style.position = "fixed"; textArea.style.left = "-9999px"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied successfully!' : 'Failed to copy results.'; console.log(msg); // Optionally, show a temporary message to the user var originalButtonText = this.textContent; this.textContent = 'Copied!'; setTimeout(function() { this.textContent = originalButtonText; }.bind(this), 2000); } catch (err) { console.error('Unable to copy results', err); var originalButtonText = this.textContent; this.textContent = 'Copy Failed'; setTimeout(function() { this.textContent = originalButtonText; }.bind(this), 2000); } document.body.removeChild(textArea); } function resetForm() { carPriceInput.value = "30000"; loanTermInput.value = "5"; interestRateInput.value = "6.5"; downPaymentInput.value = "5000"; // Clear error messages var errorMessages = document.querySelectorAll('.error-message'); for (var i = 0; i < errorMessages.length; i++) { errorMessages[i].classList.remove('visible'); } calculateLoan(); // Recalculate with default values } // Initial calculation on page load document.addEventListener('DOMContentLoaded', function() { // Check if Chart.js is loaded if (typeof Chart === 'undefined') { console.error("Chart.js is not loaded. Please ensure Chart.js is included in your project."); // Optionally, hide the chart canvas or display a message document.querySelector('.chart-container').style.display = 'none'; return; } calculateLoan(); });

Leave a Comment