Skip to content

Instantly share code, notes, and snippets.

@hainuo
Created May 28, 2020 10:44
Show Gist options
  • Save hainuo/c88dba90dc94d528dfe81fc12fec1bd2 to your computer and use it in GitHub Desktop.
Save hainuo/c88dba90dc94d528dfe81fc12fec1bd2 to your computer and use it in GitHub Desktop.
function randomString(length, chars) {
var result = '';
for (var i = length; i > 0; --i) result += chars[Math.floor(Math.random() * chars.length)];
return result;
}
var rString = randomString(32, '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment