문서의 이전 판입니다!
filter()
메소드는 함수로 제공된 테스트를 통과한 요소들의 새로운 배열을 생성합니다.
filter()
메소드는 비어있는 요소들에 대해 함수를 실행하지 않습니다.
filter()
메소드는 원본 배열을 변경하지 않습니다.
arr.filter(callback(element[, index[, array]])[, thisArg]); // from mdn web docs Array.prototype.filter() array.filter(function(currentValue, index, arr), thisValue); // from w3schools JS Array filter()
Parameter | Description |
---|---|
function() | 필수, 배열의 각 요소에 대해 실행할 함수 |
currentValue | 필수, 현재 요소의 값 |
index | 선택, 현재 요소의 인덱스 |
arr | 선택, 현재 요소의 배얼 |
thisValue | 선택, Default는 undefined this value로 함수에 전달될 값 |