Skip to content

Math Power

The math::pow function calculates the result of raising a base number to the power of an exponent.

Syntax

math::pow(<base>, <exponent>)

Parameters

  • base: The base number.
  • exponent: The exponent to which the base number is raised.

Returns

  • Number: The result of the base raised to the power of the exponent.

Example

Try it out below!
math::pow(2, 3)

This function is useful for performing exponential calculations in mathematical or scientific applications.