Skip to content

Instantly share code, notes, and snippets.

@EsteveSegura
Created September 28, 2019 13:57
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 EsteveSegura/38c96d4baa76208b2fb516545ef69070 to your computer and use it in GitHub Desktop.
Save EsteveSegura/38c96d4baa76208b2fb516545ef69070 to your computer and use it in GitHub Desktop.
random int generator
/*
This function generates a random number between a minimum and a maximum
including the extremes within the returned range
*/
function randomIntInc(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