Skip to content

Instantly share code, notes, and snippets.

@kldkv
Created November 9, 2018 20:50
Show Gist options
  • Save kldkv/1e707cf43f51b876fe3cc07b33015d74 to your computer and use it in GitHub Desktop.
Save kldkv/1e707cf43f51b876fe3cc07b33015d74 to your computer and use it in GitHub Desktop.
function getUniqueId(length = 12, prefix = '', postfix = '') {
function generate() {
return Math
.floor((1 + Math.random()) * 0x10000)
.toString(36)
.substring(3);
}
let gen = new Array(length)
.fill(null)
.map(generate)
.join('')
return prefix + gen + postfix
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment