Skip to content

Instantly share code, notes, and snippets.

@tfogo
Created January 23, 2017 13:31
Show Gist options
  • Select an option

  • Save tfogo/145f0cca75c67dc0480137b72ecbe5e8 to your computer and use it in GitHub Desktop.

Select an option

Save tfogo/145f0cca75c67dc0480137b72ecbe5e8 to your computer and use it in GitHub Desktop.
Random integer function
function getRandomInt(min, max) {
// max and min numst be integers
return Math.floor(Math.random() * (max - min)) + min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment