Skip to content

Instantly share code, notes, and snippets.

@os0x
Created April 30, 2009 10:59
Show Gist options
  • Save os0x/104407 to your computer and use it in GitHub Desktop.
Save os0x/104407 to your computer and use it in GitHub Desktop.
//var id = randomkey(10);
function randomkey(len,key){
do {key = (key||'') + Math.random().toString(36).substring(2);} while (key.length < len) ;
return key.slice(0,len);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment