Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save gavinminami/09e8cbed133228c058f8630a9a02658d to your computer and use it in GitHub Desktop.

Select an option

Save gavinminami/09e8cbed133228c058f8630a9a02658d to your computer and use it in GitHub Desktop.
var digits = '0123456789abcdef'; var pwd = ''; _(32).times(function() { pwd += digits.charAt(Math.floor(Math.random() * 16)); }); pwd;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment