Update clampNumber.md

This commit is contained in:
Angelos Chalaris
2017-12-27 11:58:54 +02:00
committed by GitHub
parent 5b9330d634
commit 43822db8b1

View File

@ -7,7 +7,6 @@ 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));
// clampNumber(2, 3, 5) -> 3
// clampNumber(1, -1, -5) -> -1
// clampNumber(3, 2, 4) -> 3