Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save snowman-repos/8840535 to your computer and use it in GitHub Desktop.
Save snowman-repos/8840535 to your computer and use it in GitHub Desktop.
Generate a random set of alphanumeric characters
generateRandomAlphaNum = (len) ->
rdmString = ""
while rdmString.length < len
rdmString += Math.random().toString(36).substr(2)
rdmString.substr 0, len
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment