자바스크립트 반복문 종류 for forEach for in for of for 가장 많이 알고 있는 반복문입니다. 대부분의 언어에서 형태가 비슷합니다. // 숫자 0 ~ 10까지 출력하는 예제 for (let i = 0; i { // 현재 값 console.log(item); // 현재 반복문 index console.log(index); // 반복시킨 원래 값 console.log(original); }); for in Object(객체) 반복문 실행 시 사용합니다. let product = { id: 12345, name: "판매상품 이름", price: 32000, creator: "abc1234", }; for (const item in product) { console.log(item, prod..