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_while1.js 144B

123456789101112131415161718
  1. /* declaratie variablen */
  2. let i = 1;
  3. /* while loop */
  4. while (true) {
  5. if (i > 5) {
  6. break;
  7. }
  8. /* console */
  9. console.log(i);
  10. i++;
  11. }