Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ValchanOficial/99913fd8f5ae1f7e4c9c4156e282c887 to your computer and use it in GitHub Desktop.
Save ValchanOficial/99913fd8f5ae1f7e4c9c4156e282c887 to your computer and use it in GitHub Desktop.
[Javascript] Create alphanumeric code
export const alphanumeric = (len) => {
const str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
return [...Array(len)].reduce(
(a) => a + str[~~(Math.random() * str.length)],
""
);
};
console.log(alphanumeric(6)); // HNF2RU
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment