Created
January 17, 2016 11:14
-
-
Save Penderis/feedaef4d4d3534af37b to your computer and use it in GitHub Desktop.
Calculate saving over period at 5% increase per month
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Interest = 1.05; | |
var Base = 200; | |
var Total = 0; | |
var Count = 12; | |
for (i = 1;i< Count;i++){ | |
console.log("Base: "+Base*Interest) | |
console.log("Total: "+Total) | |
Total += Base; | |
Base = Base*Interest; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment