자바스크립트 반복문 for of / forEach
2331 단어 JavaScriptJavaScript
반복문
//배열 선언
const arr1 = new Array();
const arr2 = [1, 2, 3, 4];
//for of
for(let number of arr2){
console.log(number); //1, 2, 3, 4
}
//forEach
arr2.forEach((number, index, array) => console.log(number, index, array);
//각각 배열에 들어있는 숫자, 인덱스, 배열모양으로 출력이 가능하다.
//보통 console.log(number); 으로만 사용
Author And Source
이 문제에 관하여(자바스크립트 반복문 for of / forEach), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@naranghae/자바스크립트-반복문-for-of-forEach저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)