Skip to content

Instantly share code, notes, and snippets.

@lvivski
Last active December 26, 2015 22:19
Show Gist options
  • Save lvivski/7221846 to your computer and use it in GitHub Desktop.
Save lvivski/7221846 to your computer and use it in GitHub Desktop.
Array.apply(null, Array(20)).map(function (charset) {
return function () {
return charset.charAt(Math.floor(Math.random() * charset.length))
}
}('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789')).join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment