This function returns the exponentiation of two numbers.

Both input numbers cannot be both equal to 0 simultaneously.

Syntax
 pow(firstNumber,secondNumber) #Output: Number
Examples
Parser expressionDescription
pow(5,2)

This example returns:

25.0

Additional information

Parameters used in this function

ParameterInput (data type)Description
firstNumber

NUMBER

Any given number or numeric field code.
secondNumber

NUMBER

Any given number or numeric field code.
Output

This function returns a NUMBER


Use cases and examples