pow – Fotr the purpose of the exercise I have to script the

For the purpose of the exercise I have to script the exponential function with the most basic arithmetic operations. I came up with this, where x is the base and y the exponent: function expAetB() { for (i=0; i<y; i++) { product=product*x; } return
Recent Questions – Stack Overflow