Created
March 20, 2018 13:57
-
-
Save lyricalpaws/c158fd9d782634d921aa4b8836593f72 to your computer and use it in GitHub Desktop.
Creates a random string of letters and numbers in JavaScript!
This file contains hidden or 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
| Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment