Files
30-seconds-of-code/snippets/mapNumRange.md
Isabelle Viktoria Maciohsek ce48fffb4d Update snippet descriptions
2020-10-21 21:54:53 +03:00

18 lines
350 B
Markdown

---
title: mapNumRange
tags: math,beginner
---
Maps a number from one range to another range.
- Return `num` mapped between `outMin`-`outMax` from `inMin`-`inMax`.
```js
const mapNumRange = (num, inMin, inMax, outMin, outMax) =>
((num - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin;
```
```js
mapNumRange(5, 0, 10, 0, 100); // 50
```