JavaScript pow

The JavaScript pow function is a Math function useful to calculate the Power of the specified expression, and its syntax is: Math.pow(base, Exponent); For example, if x is the base value and 2 is the exponent, then JavaScript Math.pow(x, 2) = x² NOTE: JavaScript pow Function Example The JavaScript pow function returns the Power of the given … Read more