Start of main content
Map number to range
JavaScript, Math · Oct 21, 2020

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);
More like this

Calculates the sum of the powers of all the numbers from start
to end
(both inclusive).
JavaScript, Math · Oct 22, 2020

Generates a random number in the specified range.
JavaScript, Math · Oct 22, 2020

Checks if the given number falls within the given range.
JavaScript, Math · Nov 1, 2020