Last active
October 13, 2015 12:31
-
-
Save droid001/24e3ac92471e6a553aa9 to your computer and use it in GitHub Desktop.
random ID generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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