Math pow( ) Method

The Math.pow() method is used to power of a number i.e., the value of number raised to some exponent. Since the Math.pow() is a static method of Math and therefore it is always used as Math.pow() and not as a method of an object created of Math class.

Math.pow(base, exponent)

Parameters: This method accepts two parameters as mentioned above and described below:

  • base:It is the base number which is to be raised.

  • exponent:It is the value used to raise the base.

console.log(Math.pow(3, 4));
// Outcome 81 ==> 3 * 3 * 3 * 3

Last updated