Skip to content

Instantly share code, notes, and snippets.

@Prottoy2938
Created November 2, 2020 13:17
Show Gist options
  • Save Prottoy2938/9df91fa0422a954470371046379ae73a to your computer and use it in GitHub Desktop.
Save Prottoy2938/9df91fa0422a954470371046379ae73a to your computer and use it in GitHub Desktop.
Cipher Delta key generation code
function makeId(length) {
let result = "";
const characters =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
const charactersLength = characters.length;
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}
@12364367895446
Copy link

Make the code

@reem362
Copy link

reem362 commented Jun 24, 2025

make the code

@Ninjalegend88
Copy link

Make the code

@Ninjalegend88
Copy link

function makeId(length) {
let result = "";
const characters =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
const charactersLength = characters.length;
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}

@fishing-guy
Copy link

Make code

@dlegendmetcalf2020-wq
Copy link

Make the code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment