Skip to content

Instantly share code, notes, and snippets.

@wellic
Created April 27, 2019 13:20
Show Gist options
  • Save wellic/5c12dfe845f1dcc51f627eaab1b17077 to your computer and use it in GitHub Desktop.
Save wellic/5c12dfe845f1dcc51f627eaab1b17077 to your computer and use it in GitHub Desktop.
function generatorID (len) {
return (Date.now().toString(36) + Math.random().toString(36).substr(2))
.split("").reverse().join("").substr(0, len || 10)
.toUpperCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment