Skip to content

Instantly share code, notes, and snippets.

@IskenHuang
Created May 2, 2014 15:31
Show Gist options
  • Save IskenHuang/c2c3a4d56c89a822ef56 to your computer and use it in GitHub Desktop.
Save IskenHuang/c2c3a4d56c89a822ef56 to your computer and use it in GitHub Desktop.
Random string
function generateRandomAlphaNum(len) {
var rdmString = "";
for (; rdmString.length < len; rdmString += Math.random().toString(36).substr(2));
return rdmString.substr(0, len);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment