Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save droid001/24e3ac92471e6a553aa9 to your computer and use it in GitHub Desktop.
Save droid001/24e3ac92471e6a553aa9 to your computer and use it in GitHub Desktop.
random ID generator
function generateRandomID() {
return Math.floor(Math.random() * 9e99).toString(36);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment