주어진 함수를 만족하는 모든 요소를 모아 새로운 배열로 반환
arr.filter(()=>{
// 기준 함수
})
filter는 함수에 부합하는 원소 모두를 새로운 배열로 반환하기 때문에 모든 원소가 필요할때 사용
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present'];
const result = words.filter(word => word.length > 6);
// Array ["exuberant", "destruction", "present"]