503 B
503 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Clamp number | snippet | javascript |
|
clay-pot-horizon | 2020-10-22T20:23:47+03:00 |
Clamps num within the inclusive range specified by the boundary values a and b.
- If
numfalls within the range, returnnum. - Otherwise, return the nearest number in the range.
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