You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_8_while2.js 133B

123456789101112
  1. /* declaratie variablen */
  2. let i = 0;
  3. /* while loop */
  4. while (i < 10) {
  5. i++;
  6. if (i % 2 === 1) {
  7. continue
  8. }
  9. console.log(i);
  10. }