말 그대로 코드를 반복시킬 때 사용하는 문법입니다.

 

반복문 종류

- for

- for in

- for of

- forEach()

- while

- do while

 

개인적으로 많이 사용했던 for문과 forEach() 문에 대해서 포스팅하려고 합니다.

 

for

for(var i =0; i<10; i++) {

   console.log("i 값 확인 = " + i)

}

 

결과값

 

 

forEach()

var testArray = ['가', '나', '다']

testArray.forEach(function(value,index,arr){
         console.log("value"+value);  
         console.log("index"+index);

         console.log("arr"+arr);
         console.log("arr"+arr[index]);    
        })

 

결과값

 

 

 

감사합니다.

LIST

+ Recent posts