Skip to content

Instantly share code, notes, and snippets.

@AitorAlejandro
Created November 24, 2020 07:54
Show Gist options
  • Save AitorAlejandro/3dbb96f7eb08d1f816ede8f74f516621 to your computer and use it in GitHub Desktop.
Save AitorAlejandro/3dbb96f7eb08d1f816ede8f74f516621 to your computer and use it in GitHub Desktop.
Create a unique ID
const uid = () => performance.now().toString(36) + Math.random().toString(36).substr(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment