Answers for "isBetween function js"

2

isBetween function js

Number.prototype.between = function(a, b) {
  var min = Math.min.apply(Math, [a, b]),
    max = Math.max.apply(Math, [a, b]);
  return this > min && this < max;
};

var windowSize = 550;

console.log(windowSize.between(500, 600));
Posted by: Guest on June-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language