Returns base to the exponent power, that is, baseexponent.
Math
pow(x,y)
base
exponent
The exponent to which to raise base.
pow is a static method of Math. As a result, you always use it as Math.pow(), rather than as a method of a Math object you create.
If x is 7 and y is 2, raisePower returns 49 (7 to the power of 2).
Math.exp, Math.log