Skip to content

Instantly share code, notes, and snippets.

@connecttobn
Created August 23, 2014 13:44
Show Gist options
  • Save connecttobn/634e8ca315ee3d2c4969 to your computer and use it in GitHub Desktop.
Save connecttobn/634e8ca315ee3d2c4969 to your computer and use it in GitHub Desktop.
var createPassowrd = function(){
var password = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@!_0123456789";
for( var i=0; i < 9; i++ )
password += possible.charAt(Math.floor(Math.random() * possible.length));
return password;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment