Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

레커

[JS] 반복문 ( Loops ) 본문

카테고리 없음

[JS] 반복문 ( Loops )

Prism Wrecker 2023. 9. 14. 21:16

● 반복문

정해진 문장을 반복하여 실행할 수 있도록 해주는 제어문


● 반복문의 종류

1. for

for ( ①초기식 ; ②조건식 ; ④증감식 ) {
③반복하려는 문장;
}

 

 

 

 


2. for / in

객체의 속성(property)를 반복

const user = {
  name: "Temp",
  city: "seoul",
  age: "20",
};

for (let x in user) {
  console.log(`${x} : ${user[x]}`);
}

3. while

①초기식(생략가능)
while( ②조건식 ) {
③명령문
}

 

 

 

 

 


 

4. do ~ while

①초기식
do {
	②명령문
}while( ③조건식 );