> 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/modulo-operator.md).

# Modulo (%)

If you want to find the remainder of a division, you can use the percentage sign "%" to find it

```javascript
log 10 % 3
// does a division and returns the remainder of the division
// this is doing 10 / 3 and returning the remainder "1"
```
