Need help!!! :) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need help!!! :)

What is the output of this code? document.vvrite("S"); for(var i =1; i <=4; i++) { if(i%2 === 0) { document.vvrite("l"); }else { document.write("o"); } } document.vvrite("earn");

6th Aug 2017, 10:29 PM
Ionut Marian
Ionut Marian - avatar
3 Answers
+ 15
Joshua there's nothing bad if someone want to understand how a quiz works, if Ionut wanted just to know the answer he could check the "View Correct Answer", that's not the case! Output is "Sololearn" 1) Code prints "Solo" at the beginning of the script 2) When i % 2 == 0 it prints "l", when i % 2 == 1 it prints "o", in a for loop from 1 to 4 we'll have: 1 % 2 = 1 = "o" 2 % 2 = 0 = "l" 3 % 2 = 1 = "o" 4 % 2 = 0 = "l" ... Now we have: "Solol". 3) The code prints "earn", we'll have: "Solol" + "earn" = "Sololearn".
6th Aug 2017, 11:44 PM
Maz
Maz - avatar
+ 6
good Expln @Maz
6th Aug 2017, 11:47 PM
Said BAHAOUARY
Said BAHAOUARY - avatar
- 2
sololearn
6th Aug 2017, 11:44 PM
Fares ABADOU
Fares ABADOU - avatar