javascript value between two numbers code example

Example 1: js difference between two numbers

var difference = function (a, b) { return Math.abs(a - b); }

Example 2: javascript number between values

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));

Example 3: if between two numbers javascript

if (500 < thenumber && thenumber < 600) {
  // ...
}

Tags:

C Example