배열의 각 요소에 대해 지정된 함수를 반복적으로 실행하는 내장 메서드
array.forEach(function(currentValue, index, array) {
});
var fruits = ["apple", "banana", "orange"];
fruits.forEach(function(fruit, index) {
console.log("인덱스: " + index + ", 과일: " + fruit);
});
위의 예제는 fruits 배열의 각 요소를 순회하며 인덱스와 해당 과일 이름을 출력한다.