Сделайте больше, чем одна вещь в начале или цикл JavaScript

// You'll have to do it th hard way:
doSomething();
for(doSomethingElse(); true == false; doAnotherThing()) {
  doYetAnotherThing();
}
1337