illegal use of break statement; javascript

前端 未结 3 1287
忘了有多久
忘了有多久 2021-02-06 21:09

When this variable becomes a certain amount i want the loop to stop, but i keep getting the error, \"Uncaught SyntaxError: Illegal break statement\".

function lo         


        
3条回答
  •  后悔当初
    2021-02-06 22:03

    break is to break out of a loop like for, while, switch etc which you don't have here, you need to use return to break the execution flow of the current function and return to the caller.

    function loop() {
        if (isPlaying) {
            jet1.draw();
            drawAllEnemies();
            requestAnimFrame(loop);
            if (game == 1) {
               return
            }
        }
    }
    

    Note: This does not cover the logic behind the if condition or when to return from the method, for that we need to have more context regarding the drawAllEnemies and requestAnimFrame method as well as how game value is updated

提交回复
热议问题