Background
Write a mortgage loan calculator application that takes in three parameters:
Description
The following parameters:
- The amount of money loaned in dollars (balance)
- The time over which the loan will be repaid, in months (term)
- The percentage rate at which interest will accrue on the loan (rate)
The output should include the following:
- The month (1 corresponding to the 1st month of payment, through the total number of months)
- The payment amount
- The principal paid this month
- The interest paid this month
- The total interest paid to date
- The remaining loan balance at the end of the month
Code
The following is the JavaScript code used for this exercise. Read over if your interested.
Technologies
Technologies Used: HTML, CSS, JavaScript, jQuery and Bootstrap. Made in VS Studio 2019 with code on GitHub.