Skip to content

Instantly share code, notes, and snippets.

@zhanser1k
Created April 21, 2021 12:47
Show Gist options
  • Save zhanser1k/de9a4994d565c05ded327cb209ba7d83 to your computer and use it in GitHub Desktop.
Save zhanser1k/de9a4994d565c05ded327cb209ba7d83 to your computer and use it in GitHub Desktop.
Random ID Generation Function
function getRandomId() {
return (
Date
.now()
.toString(36) +
Math
.random()
.toString(36)
.substr(2, 5))
.toUpperCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment