Number Functions
power()
In a nutshell The power() function takes a baseNumber and a powerNumber as arguments and returns the result of raising the base to the specified exponent as a decimal value. It follows standard exponentiation rules and is useful in test scripts that ...
max()
In a nutshell The max() function takes two numbers as arguments and returns the larger of the two as a decimal value. Both parameters accept number or decimal data types. It is useful in test scripts where you need to compare two numeric values and ...
min()
In a nutshell The min() function takes two numbers as arguments and returns the smaller of the two as a decimal value. Both parameters accept number or decimal data types. It is useful in test scripts where you need to compare two numeric values and ...