Skip to content

Instantly share code, notes, and snippets.

@pedrouid
Last active December 17, 2018 14:44
Show Gist options
  • Select an option

  • Save pedrouid/8bd1571a13763507d9967eda5a04527f to your computer and use it in GitHub Desktop.

Select an option

Save pedrouid/8bd1571a13763507d9967eda5a04527f to your computer and use it in GitHub Desktop.
Random ID Generator (Javascript) | 170 bytes
function r(l=32){var r="",a='abcdefghijklmnopqrstuvwxyz',c=a.toUpperCase()+a+'0123456789';for(var i=0; i<l; i++)r+=c.charAt(Math.floor(Math.random()*c.length));return r;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment