Compare commits

..

No commits in common. "93d9337353b9b6770d4e5ebb95faa9f72697aa7b" and "61ae8489f9c8a9cc82c1f05cb927fbe6c8c9e296" have entirely different histories.

View file

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