Skip to content

Instantly share code, notes, and snippets.

@d4rkr00t
Created November 2, 2013 17:51
Show Gist options
  • Save d4rkr00t/7281565 to your computer and use it in GitHub Desktop.
Save d4rkr00t/7281565 to your computer and use it in GitHub Desktop.
Random between two numbers
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