Skip to content

Instantly share code, notes, and snippets.

@eczn
Last active May 16, 2019 07:23
Show Gist options
  • Save eczn/6cf624b453941ee662b2a273529af2a7 to your computer and use it in GitHub Desktop.
Save eczn/6cf624b453941ee662b2a273529af2a7 to your computer and use it in GitHub Desktop.
JS Get A Short Random Id
export function getRandomId() {
return Date.now().toString(36);
}
export function getRandomId2() {
return Math.random().toString(36).slice(2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment