+ 9
what is output
for(a=2;a<=9;a++); document.write(a); for(x=3;x<=4;x++); document.write(x);
2 Respuestas
+ 21
You can check it by yourself in the Code Playground.
+ 1
output is 105
it is because the condition variable of loop will be one more than the condition at the end of the loop.