[Javascript] while 반복문

lilclown·2022년 6월 17일
0

Javascript

목록 보기
25/42
post-thumbnail
post-custom-banner

while 반복문


while

  • for문과 같은 반복문으로 전역 변수를 조건 비교에 사용하고 그 후에도 전역 변수를 변경하여 사용할 때 유용하게 사용할 수 있다.
while (조건) {
  실행;
}

예제

  • while문 사용 예제
let num = 1;

while (num <= 5) {
  console.log(num); // 1, 2, 3, 4, 5
  num++;
}

console.log(num); // 6



Tomorrow better than today, Laugh at myself

- 출처 -

profile
Tomorrow better than today, Laugh at myself

0개의 댓글