Skip to content

Instantly share code, notes, and snippets.

@Aschen
Created May 28, 2020 10:26
Show Gist options
  • Save Aschen/e5195f2742a7bc8fd391109d20176581 to your computer and use it in GitHub Desktop.
Save Aschen/e5195f2742a7bc8fd391109d20176581 to your computer and use it in GitHub Desktop.
Generate random unique ID
const CHARSET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
function uniqueId (size) {
let id = '';
for (let idx = size; idx--;) {
id += CHARSET[(Math.random() * CHARSET.length | 0)];
}
return id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment