Answer the question
In order to leave comments, you need to log in
How to calculate the payment on a loan with an annuity interest after partial early repayment with a decrease in payment?
The formula for calculating the annuity interest seems to be simple and is described on many resources related to loans, for example, in the article Formula and calculation of an annuity payment on a loan . In code it looks like this:
function annuity(credit, procent, mounths) {
const p = procent / 100 / 12;
return credit * (p + p / (Math.pow(1 + p, mounths) - 1));
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question