Skip to content

Instantly share code, notes, and snippets.

@travisfont
Created February 26, 2014 16:26
Show Gist options
  • Save travisfont/9233006 to your computer and use it in GitHub Desktop.
Save travisfont/9233006 to your computer and use it in GitHub Desktop.
function generatePassword(length)
{
var length = typeof length !== 'undefined' ? length : 8;
var charset = "abcdefghijklnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789",
retVal = "";
for (var i = 0, n = charset.length; i < length; ++i)
{
retVal += charset.charAt(Math.floor(Math.random() * n));
}
return retVal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment