Skip to content

Instantly share code, notes, and snippets.

@devudit
Last active July 5, 2016 12:11
Show Gist options
  • Save devudit/44e14514fad5a5805e117bd5eeae075c to your computer and use it in GitHub Desktop.
Save devudit/44e14514fad5a5805e117bd5eeae075c to your computer and use it in GitHub Desktop.
Check if a number is in between of two number in javascript / jquery
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));
// Result
//true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment