Application Integration
- Application Integration
- All Products
math:pow(arg1, arg2)
Argument | Required/Optional | Description |
|---|---|---|
arg1 | Required | The base number to be raised to a
power. |
arg2 | Required | The exponent value to raise the base
to. |
|
|
|---|---|
math:pow(2, 3) | 8 |
math:pow(10, 0) | 1 |
math:pow(5, -1) | 0.2 |
math:pow((), 2) | () |
math:pow(2, ()) | () |