Javascript Number map(in_min, in_max, out_min, out_max)

Description

Javascript Number map(in_min, in_max, out_min, out_max)


Number.prototype.map = function (in_min, in_max, out_min, out_max) {
  return (this - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
}



PreviousNext

Related