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

# Subtraction (-)

You can use the simple - operator when you want to minus two values from each other

```javascript
log 10 - 5
// does a subtraction on its two operands and returns 5
// this is doing 10 minus 5
```
