下列JavaScript的判断语句中,()是正确的。
A: if(a==0)
B: if(a=0)
C: if a==0 then
D: if a=0 then
A: if(a==0)
B: if(a=0)
C: if a==0 then
D: if a=0 then
举一反三
- 下列JavaScript的判断语句中,()是正确的。 A: if(a<>0) then B: if(a!=0) C: if a=!0 then D: if a<>0 then
- 1、( )是正确的JavaScript判断语句。 A: if( i=0 ) B: if( i==0 ) C: if i==0 then D: if i=0 then
- 要判断a是否等于0,下列JS的判断语句中,正确的是() A: if (a=0) B: if a= =0 then C: if (a= = 0) then D: if (a= =0)
- 下列Javascript的条件判断语句()是正确的? A: if(i==0) B: if(i=0) C: ifi==0then D: ifi=0then
- 3.下列JS的判断语句中()是正确的( ) A: if(i==0) B: if(i=0) C: if i==0 then D: if i=0 then