Skip to content

Instantly share code, notes, and snippets.

@fabiopaiva
Created May 20, 2016 02:53
Show Gist options
  • Save fabiopaiva/a67a6ecd6fa0e6096a7a32ee3326a88d to your computer and use it in GitHub Desktop.
Save fabiopaiva/a67a6ecd6fa0e6096a7a32ee3326a88d to your computer and use it in GitHub Desktop.
Best Javascript Password Generator Ever
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