This commit is contained in:
Lea De-La-Bourdonnaye 2022-11-30 11:43:08 +01:00
parent a49e0a71fb
commit 46ad4d3bca

View file

@ -1,6 +1,7 @@
const fs = require("fs");
const reponse = "train";
var word ="";
fs.readFile("word_bank.txt", (err, data) => {
if (err) throw err;
console.log(data.toString());
});
function update(x) {
word += x
document.getElementById("message").innerHTML = word;
}