1. 프로그래머스
Lv0. 배열의 유사도
const solution=(s1, s2)=> {
let answer = 0;
for(let i=0; i<s1.length; i++){
if(s2.includes(s1[i])){
answer+=1
}
}
return answer;
}
function solution(s1, s2) {
const intersection = s1.filter((x) => s2.includes(x));
return intersection.length;
}