Skip to content

Instantly share code, notes, and snippets.

@alfredwesterveld
Created February 7, 2014 15:33
Show Gist options
  • Save alfredwesterveld/8864936 to your computer and use it in GitHub Desktop.
Save alfredwesterveld/8864936 to your computer and use it in GitHub Desktop.
// With a perfectly even distribution
// http://stackoverflow.com/a/1527820/11926
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment