> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/operators/mathematical-usage/to-the-power-of.md).

# To The Power Of (^)

If you want to find the power of a value you can use the ^ operator.

```javascript
log 10 ^ 2
// does an exponentiation on its two operands and returns 100
// this is doing 10 to the power of 2
```
