[JS] 배열의 필수 메서드 정리 - filter

은채·2022년 5월 22일
0

JavaScript

목록 보기
4/26
post-thumbnail

주어진 함수를 만족하는 모든 요소를 모아 새로운 배열로 반환

  • 일정 기준에 부합하는 요소 추출 할 때 사용
arr.filter(()=>{
		// 기준 함수
	})

filter는 함수에 부합하는 원소 모두를 새로운 배열로 반환하기 때문에 모든 원소가 필요할때 사용

const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];

const result = words.filter(word => word.length > 6);

// Array ["exuberant", "destruction", "present"]
profile
반반무마니

0개의 댓글