ESLint错误:'文件'没有定义。 [无为undef]
我的代码中有一个ESLint错误,我尝试过Google搜索,但收效甚微。我能找到的唯一类似问题并没有解决。问题是,当我将document.write("string");
放入if / else时,我会收到ESLint错误,正如您在标题中看到的那样。如果我将document.write("string");
替换为console.log("string");
,则会发生同样的事情
请注意,我对javascript的唯一知识是代码学院的常规JS课程,以及制作自己的冒险文本游戏JS课程。
//Events
Math.floor((Math.random() * 100) + 1 === this.eventChance);
if (this.eventChance <= 15) {
Math.floor((Math.random() * 100) + 1 === this.eventType);
}
if (this.eventType > 50) {
document.write("You have been raided!");
}
else
{
document.write("You managed to secure a humanitarian aid drop!");
}