Skip to content

Instantly share code, notes, and snippets.

@doekman
Created February 11, 2016 09:44
Show Gist options
  • Save doekman/a9ead4f73c2adbccec08 to your computer and use it in GitHub Desktop.
Save doekman/a9ead4f73c2adbccec08 to your computer and use it in GitHub Desktop.
Limit a random number to a range of integers
function rand(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
//The following gives the first and last element 50% less chance
//return Math.round(Math.random() * (max - min)) + min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment