+ 1
why we are +operator here
document.write ( i+"<br/>")
2 Answers
+ 3
+ here is the string concatenation operator. For example, "foo" + "bar" is "foobar". In your code, it is used to add a <br> (line break) after printing the value of i.
+ 1
ok that you