I know using JS to read the contents of a .txt is possible.
For example, I have a text file code.txt
which contains
Abc
Ghi
123466
bored
idk
And I have index.js
. I would like to use the contents of code.txt to create an array into index.js.
So, in that example, I would like an array like this to appear in index.js.
const entcode = [
"Abc",
"Ghi",
"123466",
"bored",
"idk",
]
Is there a way to do that?