Skip to content

Instantly share code, notes, and snippets.

@jgmuchiri
Created January 15, 2018 00:40
Show Gist options
  • Save jgmuchiri/d8dfa4c55016e58c308cfb3eb51f197b to your computer and use it in GitHub Desktop.
Save jgmuchiri/d8dfa4c55016e58c308cfb3eb51f197b to your computer and use it in GitHub Desktop.
function makeid() {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (var i = 0; i < 5; i++)
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
console.log(makeid());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment