Write a function integerPower( base, exponent ) that returns the value of
base exponent
For example, integerPower( 3, 4 ) = 3 * 3 * 3 * 3. Assume that exponent is a positive, nonzero integer and base is an
integer. Function integerPower should use for or while to control the calculation. Do not use any math library functions.
Incorporate this function into a script that reads integer values from an HTML form for base and exponent and performs the
calculation with the integerPower function. The HTML form should consist of two text fields and a button to initiate the cal-
culation. The user should interact with the program by typing numbers in both text fields then clicking the button.
```
1
2
3
4
5
6
7
8
9
31
32
33
34