Skip to content

Instantly share code, notes, and snippets.

@btmills
Created October 30, 2013 23:45
Show Gist options
  • Save btmills/7242262 to your computer and use it in GitHub Desktop.
Save btmills/7242262 to your computer and use it in GitHub Desktop.
Generate a random string id given a set of characters and a desired length
id = (chars, len) ->
(chars[Math.ceil(Math.random()*chars.length)-1] for i in [1..len]).join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment