Files
30-seconds-of-code/snippets/clampNumber.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

18 lines
403 B
Markdown

---
title: clampNumber
tags: math,beginner
---
Clamps `num` within the inclusive range specified by the boundary values `a` and `b`.
If `num` falls within the range, return `num`.
Otherwise, return the nearest number in the range.
```js
const clampNumber = (num, a, b) => Math.max(Math.min(num, Math.max(a, b)), Math.min(a, b));
```
```js
clampNumber(2, 3, 5); // 3
clampNumber(1, -1, -5); // -1
```