Question: How do you write a conditional statement for executing some statements only if "i" is NOT equal to 5?
A
B
C
D
E
if (i <> 5)
B
if (i != 5)
C
if =! 5 then
D
if <> 5
E
if (not = 5)
Note: Not available
for(i=0;i<4;i++){ } alert(++i);
var x=3; var y=x>4?3:5; alert(x+y);
a=2 b=3 a>b?alert("It is true"):alert("Not true");B
a=2 b=3 if(a>b)alert("It is true")else alert("Not true")
var counter=50; while(counter>15){ counter-=5; } document.write(counter);