Skip to content

Instantly share code, notes, and snippets.

@Graniron
Created May 9, 2022 12:36
Show Gist options
  • Save Graniron/db09c0cfc277fdb69e4486f730a90233 to your computer and use it in GitHub Desktop.
Save Graniron/db09c0cfc277fdb69e4486f730a90233 to your computer and use it in GitHub Desktop.
const getUniqueId = () => {
return Math.random()
.toString(36)
.replace(/[^a-z]+/g, '')
.substring(0, 5);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment