Skip to content

Instantly share code, notes, and snippets.

@drosanda
Last active February 2, 2020 12:37
Show Gist options
  • Save drosanda/53588a4ad15f5fb9ff6b5e3cff638ce1 to your computer and use it in GitHub Desktop.
Save drosanda/53588a4ad15f5fb9ff6b5e3cff638ce1 to your computer and use it in GitHub Desktop.
Encode Integer into Alpha-numeric BASE using Javascript
function getAlpNumEnc(i) {
var str = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
var len = str.length;
return (i >= len ? getAlpNumEnc((i / len >> 0) - 1) : '') + str[i % len >> 0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment