Last active
December 11, 2017 11:30
-
-
Save y13i/52769c4fa01a6ee71defdc114d8ca688 to your computer and use it in GitHub Desktop.
generate password
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
| new Array(20).fill(undefined).map(() => {const chars = 'qwertyuiopasdfghjklzxcvbnm1234567890!@#$%^&*()-_=+[{]};:/?'.split(''); return chars[Math.floor(Math.random() * chars.length)]}).join(''); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment