Skip to content

Instantly share code, notes, and snippets.

@mattlundstrom
Created June 1, 2015 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattlundstrom/4c79badffa0d27d2adf7 to your computer and use it in GitHub Desktop.
Save mattlundstrom/4c79badffa0d27d2adf7 to your computer and use it in GitHub Desktop.
function randomInt(min,max) {
return Math.floor( min + Math.random() * (max - min + 1) )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment