2013-06-12 126 views

回答

4

如果两个这种说法来自右后其他则没有太大的意义。它只是意味着该

var v; //which is undefined here 

if(!v) //which is true in this case.. 
{ 
    v=0; //initialize v=0; 
} 
v +=3; //Now increment v here as if it doesn't know what v was. 

和猜测这组声明将总是输出。

只是var v=3替换此:)

相关问题