An open API service indexing awesome lists of open source software.

https://github.com/naemazam/simple-loan-calculator

The Simple Loan Calculator allows the users to calculate their loan monthly payment amount, total payable amount, and total interest. The system requires the users to enter the loan principal amount, annual interest rate, and loan terms (year). The computation results will be presented to users below the form in a table.
https://github.com/naemazam/simple-loan-calculator

html-css-javascript loan-calculator naemazam

Last synced: 4 months ago
JSON representation

The Simple Loan Calculator allows the users to calculate their loan monthly payment amount, total payable amount, and total interest. The system requires the users to enter the loan principal amount, annual interest rate, and loan terms (year). The computation results will be presented to users below the form in a table.

Awesome Lists containing this project

README

          

# Simple-Loan-Calculator
The Simple Loan Calculator allows the users to calculate their loan monthly payment amount, total payable amount, and total interest. The system requires the users to enter the loan principal amount, annual interest rate, and loan terms (year). The computation results will be presented to users below the form in a table.

# formula for this application:

### **PMT = [ P x (APR/n) ] / [ 1 - ( 1 + ( APR / n ) ) ^ (-nY) ]**

- **PMT** = Regular/Monthly Payment Amount
- **P** = Loan Principal Amount
- **APR** = Annual Interest Percentage Rate
- **n** = Number of Payment Periods per Year
- **Y** = Loan Term in number of years