> ## Documentation Index
> Fetch the complete documentation index at: https://kk-83bff226.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# exponential

> Calculates the result of raising a base number to an exponent.

## Signature

```typescript path=null start=null theme={null}
exponential(base: number, exponent: number): number
```

## Parameters

* **base**: `number` - The base number.
* **exponent**: `number` - The exponent to which the base is raised.

## Returns

`number` - The result of base raised to the exponent.

## Source

Defined in [number.ts:296](https://github.com/koji/ichigyou/blob/main/src/number.ts#L296)
