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.
function check(a, x) {
return (a.filter(el => el === x).length != 0) ? true : false
}
히히😁 오늘 배운 .filter()
메소드를 써 보았당 굉장히 신나서 썼는데... 아 맞다 .include()
가 있었지... 하나를 배우면 자꾸 그거에 갖혀서 하나를 까먹는다. 연습하면서 최대한 고민해서 간단하게 푸는 것을 목표로 해야겠다.
function check(a,x){
return a.includes(x);
};