알고리즘 26 - You only need one - Beginner

jabae·2021년 10월 19일
0

알고리즘

목록 보기
26/97

Q.

You will be given an array a and a value x. All you need to do is check whether the provided array contains the value.

Array can contain numbers or strings. X can be either.

Return true if the array contains the value, false if not.

A)

function check(a, x) {
  return (a.filter(el => el === x).length != 0) ? true : false
}

other

히히😁 오늘 배운 .filter()메소드를 써 보았당 굉장히 신나서 썼는데... 아 맞다 .include()가 있었지... 하나를 배우면 자꾸 그거에 갖혀서 하나를 까먹는다. 연습하면서 최대한 고민해서 간단하게 푸는 것을 목표로 해야겠다.

function check(a,x){
  return a.includes(x);
};
profile
it's me!:)

0개의 댓글