Skip to content

Instantly share code, notes, and snippets.

@colelawrence
Created August 5, 2014 21:12
Show Gist options
  • Select an option

  • Save colelawrence/f4a98de8a686677bcbc1 to your computer and use it in GitHub Desktop.

Select an option

Save colelawrence/f4a98de8a686677bcbc1 to your computer and use it in GitHub Desktop.
randomString
randomString = (len)->
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789`~!@#$%^&*()_-+={[}]:;\"'|\\<,>.?/"
res = ""
res += chars[Math.random()*chars.length|0] for num in [0..len]
res
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment