Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save peterkaminski/d9960b40a0869404a8fc0064e343b847 to your computer and use it in GitHub Desktop.
Save peterkaminski/d9960b40a0869404a8fc0064e343b847 to your computer and use it in GitHub Desktop.
generate a random number and convert it to base 36
var rand = function() {
return Math.random().toString(36).substr(2); // remove `0.`
};
var token = function() {
return rand() + rand(); // to make it longer
};
token(); // "bnh5yzdirjinqaorq0ox1tf383nb3xr"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment