I have the following code:
for (var i in players) {
    for (var x in players[i].bullets) {
        for (var y in xpBoosts) {
            if (something === true) {
                // do something
                continue;
            }
        }
    }
}
What will the continue statement do? Will it cycle the innermost for loop or the outermost?
Is there any way I can get the continue statement to cycle through to the next bullet?
 
     
     
    