Thank you for reading PDF Automation Station!
Access to the newsletter archive is now limited to paid subscribers. Free subscribers to this newsletter will continue to have access to all articles for a full week after the date of publication.
In last week’s article I outlined how to create an Internal Rate of Return calculation using JavaScript in a PDF fillable form. Part of the formula contained an exponent, which uses the Math.pow( ) method in JavaScript. Math.pow( ) returns a base, raised to a power.
Try these in the console:
Math.pow(2,2); //returns 4
Math.pow(3,3); //returns 27
Math.pow(4,4); //returns 256