Can anybody tell me how to solve polynomial equation of n degrees in JavaScript? Also how can I find antilogs in JavaScript? Is there any function by which I can find the antilog of any number?
Math.pow(x,y);// x^y
Thats for polynomials
Math.log(x);
Thats for logs.
Math.pow(10,x);
Thats for antilog
You have to come up with some function to solve antilog