Skip to content

Instantly share code, notes, and snippets.

@zela
Created March 18, 2011 13:07
Show Gist options
  • Save zela/876032 to your computer and use it in GitHub Desktop.
Save zela/876032 to your computer and use it in GitHub Desktop.
random integer
function randomInt(n) {
return Math.round(Math.random() * n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment