Skip to content

Instantly share code, notes, and snippets.

@vko-online
Created February 2, 2016 06:33
Show Gist options
  • Save vko-online/76cc31b6e5cf834ad8ac to your computer and use it in GitHub Desktop.
Save vko-online/76cc31b6e5cf834ad8ac to your computer and use it in GitHub Desktop.
Generate 4 alpha-numberic symbols, useful for SMS services, DOM id attrs
//this will generate 8wde for example
function genShortUid() {
return ('0000' + (Math.random()*Math.pow(36,4) << 0).toString(36)).slice(-4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment