重重的壳裹着轻轻的仰望

I smile when I'm angry. I cheat and I lie. I do what I have to do ··· To get by.

导航

1. for in 语句
严格的迭代语句,类似c#的foreach
for(sProp in window)
{
    alert(sProp);
}

2.label 标签
label: statement
常用的是嵌套循环的跳出。例如
outermost:
for(var i=0;i<10);i++)
{
    for(var j=0;j<10;j++)
    {
 if(j==5)
    break outermost;
    }
}

可以不仅跳出内层循环,而且跳出外层循环

3.with 语句
他是运行缓慢的代码段,尽量避免使用
var sMessage = "hello world";
with(sMessage){
 alert(toUpperCase());  //outputs "HELLO WORLD"
}