Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dhargitai/d2b95876dacbae4133f17bdfd6841b83 to your computer and use it in GitHub Desktop.
Save dhargitai/d2b95876dacbae4133f17bdfd6841b83 to your computer and use it in GitHub Desktop.
let generateCode = (givenOptions = {}) => {
const {pool, length} = {
...{length: 3, pool: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'.split('')},
...givenOptions
};
let code = '';
while (code.length < length) {
code += pool[Math.floor(Math.random() * pool.length)];
}
return code;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment