pow

Returns x to the power of y.

This function does not generate a change.

Function

pow(x, y)

Arguments

Argument Type Description
x int/float (required) Base number
y int/float (required) Power number

Return value

Returns with a float.

Example

pow() function example:

pow(3, 4);

Return value in JSON format

81.0