Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

JavaScript While Loop

let n = 0;

while (n < 3) {
  n++;
}

console.log(n);

via : https : //developer.mozilla.org/en - US/docs/Web/JavaScript/Reference/Statements/while

~ fin ~