어떤 조건문이 참이기만 하면 문장을 계속해서 수행한다.
while (조건문)
문장
n = 0;
x = 0;
while (n < 3) {
n++;
x += n;
}
첫번째 경과 후: n = 1 and x = 1
두번째 경과 후: n = 2 and x = 3
세번째 경과 후: n = 3 and x = 6
// 다음과 같은 코드는 피하세요.
while (true) {
console.log("Hello, world");
}
https://developer.mozilla.org/ko/docs/Web/JavaScript/Guide/Loopsand_iteration#while문