Skip to content

Instantly share code, notes, and snippets.

@emanuel-sanabria-developer
Created July 24, 2013 00:57
Show Gist options
  • Save emanuel-sanabria-developer/6067367 to your computer and use it in GitHub Desktop.
Save emanuel-sanabria-developer/6067367 to your computer and use it in GitHub Desktop.
random
/*
* Useful function for random integer between [min, max].
*/
function randomBetween(min, max) {
return ~~(Math.random() * (max - min + 1) + min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment