배열의 비교
예시 const arr1 = [1,2,3,4,5]; const arr2 = [2,4,6,8,10]; const arr3 = [1,2,3,4,5]; 1. stringify를 이용한 간단한 배열의 비교 아래와 같이 비교하려는 배열을 JSON.stringify()메서드를 통해 문자열로 변환한 뒤 비교할 수 있다. console.log(JSON.stringify(arr1) === JSON.stringify(arr2));//false console.log(JSON.stringify(arr1) === JSON.stringify(arr3));//true 2. 배열의 교집합 구하기 console.log(arr1.filter(v => arr2.includes(v)));//[2,4] console.log(arr1.filt..
2022. 6. 25.