lightweight browser based vanilla javascript task Loan calculator app.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
A browser based loan calculator using javascript for the sole purpose of learning to work with and manipulate the DOM
To get a local copy up and running follow these simple steps.
dependencies are called via CDN and are not modules in the program, thus this program requires no dependencies to be installed
- Clone the Loan-Calculator
git clone https://github.com/ReubenHawley/Loan-Calculator.git
- Execute the
index.htmlfile to open it in the browser
- User enters a loan amount into the input bar with the placeholder "Loan Amount"
- User enters an interest amount into the input bar with the placeholder "Interest"
- User enters a repayment term into the input bar with the placeholder "Years to Pay"
- Upon clicking Calculate, a gif is loaded for UX to demonstrate processing
- Results returned are Monthly Payment , Total Payment , Total Interest
- I learned to traverse the DOM from within the app.js file in order to obtain,manipulate and return data back to the user
- How to handle classes in HTML
- Organizing of Layout in CSS
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
Reuben Hawley - theonlyReuben - email
Project Link: https://github.com/ReubenHawley/Loan-Calculator
- Brad Traversy - tutorial