Skip to content

Instantly share code, notes, and snippets.

@rockbot
Created September 19, 2012 17:30
Show Gist options
  • Save rockbot/3750961 to your computer and use it in GitHub Desktop.
Save rockbot/3750961 to your computer and use it in GitHub Desktop.
random number between 0 and X
var MAX_DESIRED = 10;
var randIndex = Math.floor(Math.random() * (MAX_DESIRED + 1));
// yields an integer between 0 and 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment