/ Published in: JavaScript
Calculating Compound Interest. Real time Compound Interest Calculator
Expand |
Embed | Plain Text
function(year,amount,interest,frequency){ var compound_int=0; var interest1=parseFloat(interest/(frequency*100)); var val=parseInt(amount)*Math.pow((1+interest1),(frequency*year)); return val; }
You need to login to post a comment.
