Skip to content

Instantly share code, notes, and snippets.

@dustinpoissant
Created November 8, 2016 19:46
Show Gist options
  • Save dustinpoissant/156332da10563a0e00364a8c38c917ed to your computer and use it in GitHub Desktop.
Save dustinpoissant/156332da10563a0e00364a8c38c917ed to your computer and use it in GitHub Desktop.
Generate a Random Integer within a range.
Math.__proto__.randInt = function(min, max){
return Math.floor(Math.random() * (max - min + 1)) + min;
};
Math.__proto__.randInt=function(a,b){return Math.floor(Math.random()*(b-a+1))+a};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment