Can anybody help me to explain continue, because I don't really understand. and why this thing work only with 0 and 1? creating loop for even numbers
for (let i = 2; i <= 10; i++) {
if(i % 2 == 1) continue;
alert(i);
}
Thank U:)
somebody help me, I'm really confused hehehe