MudGuard: Frage zum Wiki-Artikel „Schleife“

Beitrag lesen

problematische Seite

Hi,

function b() {
  foo: for(var i=0;i < 10; ++i) {
    a(i);
  }
}

function a(i) {
  console.log(i);
  break foo;
}

Also bitte - sowas macht man doch auch nicht mit break, das macht man mit goto !!!

😉

cu,
Andreas a/k/a MudGuard