filter()

차노·2023년 8월 18일
0

JS

목록 보기
64/96

정의

In JavaScript, the filter() method is a built-in function provided by arrays /that creates a new array containing all elements from the original array /that meet a specific condition.

자바스크립트에서 필터 메소드는 특정 조건을 만족시키는 기존의 배열의 모든 요소를 담고 있는 새로운 배열을 만드는 배열이 제공한 내장형 함수이다

It doesn't modify the original array;
기존 배열을 바꾸지 않는다._

It returns a new array containing only the elements that pass the given condition.

주어진 조건을 지나치는 요소만을 담고 있는 새로운 배열을 반환한다.

Syntax

  • callbackFunction: A function that tests each element in the array.

    배열의 각 요소를 테스트하는 함수

  • currentValue: The current element being processed in the array.

    배열에서 진행되고 있는 현재 요소

  • index (Optional) : The index of the current element in the array.

    배열에 있는 현재 요소의 인덱스

-array (optional): The array that filter() method was called upon.

필터 메소드가 불려지는 배열

특징

The filter() method applies the callbackFunction to each element in the array and includes the elements in the new array if the function's return value is true.

필터 메소드는 배열의 각 요소에 콜백함수를 적용시키고 함수의 반환값이 true일 경우, 새로운 배열 내의 요소를 포함시킨다.

결론

The filter() method is a powerful tool for selecting and extracting specific elements from an array based on a given condition.

필터 메소드는 주어진 조건에 기반하여 배열에서 특정 요소를 선택하고 추출하는데 강력한 기능을 가지고 있다.

0개의 댓글