0
Plz answer
Var sum =0 For( I=4; I<8; I++) { if(I==6) { Continue; } Sum +=I } Document.write(sum);
2 odpowiedzi
+ 1
16
First it will iterate with l = 4
Then 5
And when l = 6 it will not add to the sum
Then it will iterate with l = 7
Then the loop will stop
So sum would be 4+5+7 = 16
Hope It Helps You 😊
0
Tq