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?
Solved! Go to Solution.
Math.pow basically replace the exponent 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!
Views
Replies
Total Likes
Thanks for the help. How would I incorporate Math.pow into the formula?
Views
Replies
Total Likes
Math.pow basically replace the exponent formula
Perfect! Thank you so much!!
Views
Replies
Total Likes
Views
Likes
Replies