Skip to content

Instantly share code, notes, and snippets.

@Canace22
Created July 18, 2020 02:23
Show Gist options
  • Save Canace22/9798ae4b25be660f02392a121640a8a0 to your computer and use it in GitHub Desktop.
Save Canace22/9798ae4b25be660f02392a121640a8a0 to your computer and use it in GitHub Desktop.
createPseudonym
const fs = require('fs');
function createPseudonym (params) {
let start = 12354;
const arr = [];
for (let index = 0; index < 185; index++) {
const word = String.fromCharCode(start++);
arr.push(word);
}
fs.writeFileSync('./pseudonym.txt', arr);
}
createPseudonym();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment