Skip to content

Instantly share code, notes, and snippets.

@ultimagriever
Created February 21, 2018 13:53
Show Gist options
  • Save ultimagriever/d9a48538feb878c7ce8b65ca7aab597a to your computer and use it in GitHub Desktop.
Save ultimagriever/d9a48538feb878c7ce8b65ca7aab597a to your computer and use it in GitHub Desktop.
Random String Generator
function generateRandomString(length = 32) {
let hash = '';
for (let i = 0; i < length; i++) {
hash += (Math.floor(Math.random() * 16)).toString(16);
}
return hash;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment