Skip to content

Instantly share code, notes, and snippets.

@detj
Last active January 3, 2016 08:09
Show Gist options
  • Save detj/8434371 to your computer and use it in GitHub Desktop.
Save detj/8434371 to your computer and use it in GitHub Desktop.
Generate password
(function() { var i = 0;var arr = [];while(i < 16) { arr.push('abcdefghjkmnpqrstuvwyzABCDEFGHJKLMNPQRSTUVWXYZ123456789#$%&*~'[Math.floor(Math.random() * 61)]); ++i; } console.log(arr.join('')); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment