SORU - 10 / 15
-
S
Aşağıdaki kodun çıktısı ne olur?
for (var num = 1; num < 7; num++) { if (num == 5) continue; document.write ( num + " " ); }
-
A
1 2 3 4 5
-
B
1 2 3 4 6
-
C
1 2 3 4 7
-
D
1 2 3 4 8
-
DOĞRU CEVAP
1 2 3 4 6
- ÖNCEKİ SORU SONRAKİ SORU