Skip to content

Instantly share code, notes, and snippets.

@djom202
Created December 19, 2017 18:01
Show Gist options
  • Save djom202/d3d87a7114a48fac0a9978fd8538a21d to your computer and use it in GitHub Desktop.
Save djom202/d3d87a7114a48fac0a9978fd8538a21d to your computer and use it in GitHub Desktop.
function randomId(lenght) {
var charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_';
var id = '';
var randPos = 0;
for (var i = 1; i <= lenght; i++) {
randPos = Math.floor(Math.random() * charSet.length);
id += charSet[randPos];
}
return id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment