Skip to content

Instantly share code, notes, and snippets.

@wwwebman
Last active January 17, 2017 12:39
Show Gist options
  • Save wwwebman/ba76e58da369d79d271ec92de62a797c to your computer and use it in GitHub Desktop.
Save wwwebman/ba76e58da369d79d271ec92de62a797c to your computer and use it in GitHub Desktop.
function generateRandomBetween(min, max){
var y = Math.floor(Math.random()*(max-min + 1) + min);
return y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment