Created
May 20, 2016 02:53
-
-
Save fabio-paiva-sp/a67a6ecd6fa0e6096a7a32ee3326a88d to your computer and use it in GitHub Desktop.
Best Javascript Password Generator Ever
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
| var pass = Math.random().toString(36).slice(-8); | |
| console.log(pass); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment