> 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/builtins/math/min.md).

# min / max

## Description

min() takes two numbers as parameters and returns the one that is smaller

## Parameters

min() takes two numbers as parameters

## Usage

```javascript
log min(5,2)
// 2
```
