+ 1
how come the other var text is looped? for (i=1, text=""; i <=8; i++) { text=hello; document.write(i+text+"<br/>"); }
2 Respostas
+ 6
There are some mistakes in the code. it should be like this:
for (i=1, text=""; i <=8; i++)
{ text="hello";
document.write(i+text+"<br/>");
}
to print
1hello
2hello
3hello
:
8hello
+ 3
yes you right