filter / find / findIndex

PYG·2021년 5월 14일
0

JAVASCRIPT

목록 보기
2/9

filter

  • 요소들을 걸러내는 것이 목적 (검색 기능)
  • 배열을 순회하며 요소마다 조건 확인 후 조건을 만족하는 요소들로 구성된 새로운 배열 (걸러내기)
  • 기존 배열이 변한다
let newArray = arr.filter(callback(currentValue[, index, [array]]) {}[, thisArg]);
  • map과 forEach와 동일한 구문

1.1

let numbers = [1, 4, 9]
let parameters = numbers.filter((num, index, arr) =>
          	{console.log(num, index, arr)})
  • 값은
    1 0 [ 1, 4, 9 ]
    4 1 [ 1, 4, 9 ]
    9 2 [ 1, 4, 9 ]

1.2 (가격이 2000원 이하 뽑기)

var ss = [
{name : 'apple, price : 2000},
{name : 'banana', price : 1200}, 
{name : 'melon', price : 3000}
];
var newFilter = ss.filter((e) => e.price >= 2000);
        console.log(newFilter);

-> 값은 {name : 'apple, price : 2000},
{name : 'banana', price : 1200}

1.3 (문자열 찾기)

var A = [
{name : "이건", salary : 5000},
{name : "홍길동", salary : 1000},
{name : "임신구", salary : 3000},
{name : "이승룡", salary : 2000}
];
var B = A.filter(function(e){
        return e.name == "이건";
    });

-> 값은 {name : "이건", salary : 5000}

1.4 화살표 함수

var A = [
{name : "이건", salary : 5000},
{name : "홍길동", salary : 1000},
{name : "임신구", salary : 3000},
{name : "이승룡", salary : 2000}
];
var B = A.filter((e) => e.name == "이건");
console.log(B);

-> 값은 {name : "이건", salary : 5000}

1.5 걸러내서 배열 새롭게 바꾸기

  • 10보다 작은 수 걸러내서 배열은 새롭게 바꾸기
function a(value) {
	return value >= 10;
};
var b = [12, 5, 7, 33, 50].filter(a);
console.log(b)

-> 값은 [12, 33, 50]

find

  • callback 함수가 참을 반환할 때까지 해당 배열의 각 요소에 대한 callback 함수를 실행
  • 원하는 요소를 찾으면 즉시 반환
  • 기존 배열을 변경하지 않는다

1.1

let kk = [ 
	{name : 'banana', price : 3000},
    {name : 'apple', price : 2000},
    {name : 'melon', price : 10000}
];
function findnames(names) {
	return names.name === 'banana';
}
console.log(kk.find(findnames)); 

1.2 화살표 함수 사용

let kk = [ 
	{name : 'banana', price : 3000},
    {name : 'apple', price : 2000},
    {name : 'melon', price : 10000}
];
let result = kk.find(i => i.name === 'banana');
console.log(result);

-> i는 어떠한 것으로 바꿔도 상관없음

findIndex

  • 찾고자 하는 값의 index 값(몇 번째)을 반환하기 위해 사용
  • 찾고자 하는 값이 나올 때까지 모든 배열의 각 요소에 함수 적용
  • 호출된 배열을 변경하지 않는다

1.1

let kk = [ 
	{name : 'banana', price : 3000},
    {name : 'apple', price : 2000},
    {name : 'melon', price : 10000}
];
let index = kk.findIndex(findtitle => findtitle.name == 'apple'); 
console.log(index);

-> 값은 1

0개의 댓글

관련 채용 정보