Exponential
Module Info:
moduleType: "internal",
moduleName: "exponential"
Description
The exponential function raises A to the power of B.
Inputs
| Name | Type | Required |
|---|---|---|
A | number | ✔ |
B | number | ✔ |
Outputs
| Name | Type |
|---|---|
result | number |
errorMessage | string |
The errorMessage property will only be defined if either A or B are not numbers.
Examples
| Inputs | Outputs | ||
|---|---|---|---|
| A | B | result | errorMessage |
4 | -2 | 0.0625 | undefined |
2 | 3 | 8 | undefined |
2 | "asd" | undefined | "One of the arguments provided was not a number" |