Skip to content

Instantly share code, notes, and snippets.

@nanmu42
Created March 7, 2019 07:52
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 nanmu42/0a527c43c973074b3ea1bfb06b0ece05 to your computer and use it in GitHub Desktop.
Save nanmu42/0a527c43c973074b3ea1bfb06b0ece05 to your computer and use it in GitHub Desktop.
Javascript Ramdom String With Specific Length
// change 10 to the length desired
[...Array(10)].map(i=>(~~(Math.random()*36)).toString(36)).join('')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment