🔠 키워드 while 문 무한 반복문 do..while문 for 문 for 문과 배열 for..in break문 continue문
🔠 키워드
특정 조건을 만족하는 동안 블록문을 실행합니다.
let num = 1; while(num<= 9999){ console.log(num); num++; }