forEach()

차노·2023년 8월 3일
0

JS

목록 보기
16/96

Array.prototype.forEach()

forEach()는 배열의 요소들을 loop through 하기 위해 사용한다.

The forEach() method executes a provided function once for each array element.

forEach() method는 각각의 배열 요소들을 한번에 제공된 펑션을 실행한다.

a, b, c라는 요소가 담긴 array1 배열이 있고, forEach 문을 돌려 element 인자를 target하여 각각의 요소를 output한다

forEach has parameters, which are callbackFn, element, index, array, thisArg.

Iterative methods

Many array methods take a callback function as an argument. CallbackFn takes three arguments-element, index, array.

Reference

In JavaScript, the 'forEach()' function is a higher-order function provided by arrays to iterate over each element in the array and perform a specified operation or action on each element.

자바스크립트에서, forEach() 함수는 배열에서 각각의 요소를 자동화하는 배열에 의해 제공된 higher-order 함수이며, 각각의 요소에 특정 오퍼레이션과 조작을 취한다.

It provides a simple and concise way to iterate through an array without needing to write a traditional 'for' loop.

기존의 'for' 루프를 사용할 필요 없이 배열을 반복하는 간결한 방식을 제공한다.

The 'forEach()' function takes a callback function as an argument, and this callback function is executed for each element in the array.

forEach() 함수는 인자로 콜백 함수를 받으며 이 콜백함수는 배열의 각 요소에 대해 실행한다.

The callback function is provided with three arguments:

콜백 함수는 3개의 인자를 제공 받는다.

the current element, the index of the current element, and the entire array being traversed.

Syntax

Example

출처

Chat GPT

0개의 댓글