> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Power

> Raise a base number to an exponent.

The **Power** action calculates `base` raised to `exponent`.

## Inputs

| Input        | Type   | Required | Description                    |
| ------------ | ------ | -------- | ------------------------------ |
| **Base**     | Number | Yes      | The number being raised.       |
| **Exponent** | Number | Yes      | The power applied to the base. |

## Outputs

| Output     | Type   | Description                   |
| ---------- | ------ | ----------------------------- |
| **Result** | Number | The value of `base^exponent`. |

Examples include `2^8 = 256`, `9^0.5 = 3`, and `10^-2 = 0.01`.

<Note>
  Some combinations do not have a real-number result. For example, a negative
  base with a fractional exponent can produce `NaN`.
</Note>
