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

350 B

title, tags
title tags
mapNumRange math,beginner

Maps a number from one range to another range.

  • Return num mapped between outMin-outMax from inMin-inMax.
const mapNumRange = (num, inMin, inMax, outMin, outMax) =>
  ((num - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin;
mapNumRange(5, 0, 10, 0, 100); // 50