📜  值之间的 javascript 数字 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:04.735000             🧑  作者: Mango

代码示例1
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));