Question:What is the correct output of the following code? for(i=0;i<4;i++){ } alert(++i);
for(i=0;i<4;i++){ } alert(++i);
A 3 B 4 C 5 D 6
+ AnswerC
+ Report