Created
July 18, 2020 02:23
-
-
Save Canace22/9798ae4b25be660f02392a121640a8a0 to your computer and use it in GitHub Desktop.
createPseudonym
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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