Skip to content

Instantly share code, notes, and snippets.

@hperantunes
Created November 4, 2014 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hperantunes/b81a134bb763558a5c8e to your computer and use it in GitHub Desktop.
Save hperantunes/b81a134bb763558a5c8e to your computer and use it in GitHub Desktop.
Random 100 characters in javascript
for(var c = ''; c.length < 100;) c += Math.random().toString(36).substr(2, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment