Skip to content

Instantly share code, notes, and snippets.

@vsDizzy
Created January 7, 2021 14:25
Show Gist options
  • Save vsDizzy/8aa2c840adc2119626e1d4944cb08a0a to your computer and use it in GitHub Desktop.
Save vsDizzy/8aa2c840adc2119626e1d4944cb08a0a to your computer and use it in GitHub Desktop.
Generate string id from current time in milliseconds.
export function generateId() {
return new Date().getTime().toString(36)
}
@vsDizzy
Copy link
Author

vsDizzy commented May 29, 2024

Modern UUID v4:

crypto.randomUUID()

//  'd11afcc1-fcc7-4a77-a8c1-c753dcdbba90'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment