forループで次にスキップする必要がある短いJavaScriptコードがあります....以下を参照してください。
var y = new Array ('1', '2', '3', '4');
for (var x in y) {
callFunctionOne(y[x]);
while (condition){
condition = callFunctionTwo(y[x]);
//now want to move to the next item so
// invoke callFunctionTwo() again...
}
}
構文にエラーがないように、シンプルに保ちたいと考えています。