-1
我不確定這是發生在哪裏。我試着改變代碼來查看錯誤是否會消失,但我收到了其他錯誤。意外的標識符
function doesItHit(){
if(toHit * Math.floor(Math.random() * 101) + 1 >= enemyEvasion){
itHits = true
}
}
我不確定這是發生在哪裏。我試着改變代碼來查看錯誤是否會消失,但我收到了其他錯誤。意外的標識符
function doesItHit(){
if(toHit * Math.floor(Math.random() * 101) + 1 >= enemyEvasion){
itHits = true
}
}
請勿寫入設置,以便爲itHits賦值。
刪除此內容並解決優秀標識符錯誤。
不要忘了申報()需要
var itHits = false;
var enemyEvasion = 100;
功能doesItHit變量{
if(toHit * Math.floor(Math.random() * 101) + 1 >= enemyEvasion){itHits = true}
console.log("itHits: " + itHits);
}
究竟是什麼意思'設置itHits = TRUE'?這是新的JavaScript? – thefourtheye
應該做什麼功能?它不會返回任何東西。 – h2ooooooo
謝謝,我想我得到了我的火車雖然混入我的代碼。 – jordansinn