Skip to content

Instantly share code, notes, and snippets.

@y13i
Last active December 11, 2017 11:30
Show Gist options
  • Select an option

  • Save y13i/52769c4fa01a6ee71defdc114d8ca688 to your computer and use it in GitHub Desktop.

Select an option

Save y13i/52769c4fa01a6ee71defdc114d8ca688 to your computer and use it in GitHub Desktop.
generate password
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