drewciffer
02-11-2015
I need to enter this formula P = [i L (1 + i)^n] / [(1 + i)^n - 1] into a fillable PDF. The only thing I cannot figure out, is the exponents. How do I enter those into the equation?
Magus069
MVP
Math.pow basically replace the exponent formula
Perfect! Thank you so much!!
Thanks for the help. How would I incorporate Math.pow into the formula?
Hi there,
to be able to do so, using JavaScript you must use Math.pow(value, n);
so if you want to do 4^3 then you will have Math.pow(4, 3);
I hope this help!