Skip to content

Instantly share code, notes, and snippets.

@roniceyemeli
Last active August 29, 2022 19:39
Show Gist options
  • Save roniceyemeli/76d8afa1537e7e8b0fadcfabd23d6076 to your computer and use it in GitHub Desktop.
Save roniceyemeli/76d8afa1537e7e8b0fadcfabd23d6076 to your computer and use it in GitHub Desktop.
const generateId = () => {
const id = String(
Date.now().toString(32) +
Math.random().toString(16)
).replace(/\./g, '');
return id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment