Skip to content

Instantly share code, notes, and snippets.

@netgfx
Created December 22, 2013 17:19
Show Gist options
  • Save netgfx/8085645 to your computer and use it in GitHub Desktop.
Save netgfx/8085645 to your computer and use it in GitHub Desktop.
random number from max-min
/**
* getRandom * Description
* @param {type} max* Description
* @param {type} min* Description
**/
function getRandom(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