我有一个简短的问题:如何在这段代码中从A
到:B
for(var i=0;i<length;i++)
{
B <--------------- So far
if (/*condition*/)
{
if(/*condition*/)
{
.....
}
else {
A <------------ From here
};
}
else if(/*condition*/)
{
...
}
}
我知道break
and continue
,但在这里不起作用
谢谢大家!