Skip to content

Instantly share code, notes, and snippets.

@solancer
Created December 1, 2016 11:35
Show Gist options
  • Select an option

  • Save solancer/d0196af85c024b612e901d0b6163ff5c to your computer and use it in GitHub Desktop.

Select an option

Save solancer/d0196af85c024b612e901d0b6163ff5c to your computer and use it in GitHub Desktop.
Random id generator
function randIdGen() {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 5; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return '#' + text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment