Skip to content

Instantly share code, notes, and snippets.

@tspringborg
Created July 11, 2019 13:34
Show Gist options
  • Save tspringborg/39f5053f649032ddd6f033cd022588ae to your computer and use it in GitHub Desktop.
Save tspringborg/39f5053f649032ddd6f033cd022588ae to your computer and use it in GitHub Desktop.
Simple compounded Interest
function compoundedInterest(value, pct, times) {
return value*(Math.pow(1 + pct/1, times) - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment