Returns x to the power of y.
This function does not generate a change.
pow(x, y)
Argument | Type | Description |
---|---|---|
x | int/float (required) | Base number |
y | int/float (required) | Power number |
Returns with a float.
pow() function example:
pow(3, 4);
Return value in JSON format
81.0