Contact: aviboots(AT)netvision.net.il
39,775 questions
51,680 answers
573 users
var i = 0; while (i < 5) { i++; if (i === 2) { continue; } document.write("i = " + i + "<br />"); } /* run: i = 1 i = 3 i = 4 i = 5 */