Pow is a built-in scripting function that gets the result of raising a numeric value to a specified exponent.
Function | Group | Execution | Windows | Embedded | Thin Client |
---|---|---|---|---|---|
Pow | Arithmetic | Synchronous | Supported | Supported | Supported |
Pow( numBase, numExponent )
Returns the result of raising the base to the exponent.
Tag Name | Expression |
---|---|
Tag | Pow( 2, 3 ) // Returned value = 8 |
Tag | Pow( 10, 4 ) // Returned value = 10000 |