Skip to content

Instantly share code, notes, and snippets.

@congwenma
Last active June 15, 2017 17:31
Show Gist options
  • Save congwenma/d18e6f82962b4be8ba6a69c3ff327580 to your computer and use it in GitHub Desktop.
Save congwenma/d18e6f82962b4be8ba6a69c3ff327580 to your computer and use it in GitHub Desktop.
generate string of length
const fakeString = n => Array.from(Array(n || 10).keys()).map(n => String.fromCharCode(Math.floor(Math.random()*26) + 97)).join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment