pow
pow — raises a base to the power of an exponent.
pow (base, exponent)
baseAny number.
exponentAny number.
The result of raising the base to the given
exponent.
Calculates a base to the power of an exponent. Non-numbers are treated as zero.
Gamma>pow(2,3);8Gamma>pow(12,2);144Gamma>pow(5.2,4.75);2517.7690015606849556Gamma>