두 개의 리터럴 배열을 취하는 JavaScript 함수를 작성해야 합니다. 우리의 함수는 바로 그 배열에 있지만 두 번째 배열에는 없는 모든 요소를 포함하는 첫 번째 배열의 필터링된 버전을 반환해야 합니다.
Array.prototype.filter() 함수를 사용하고 Array.prototype.includes() 메서드를 사용하여 두 번째 배열의 요소를 확인합니다.
예시
이에 대한 코드는 -
const arr1 = [1,2,3,4,5]; const arr2 = [1,3,5]; const filterUnwanted = (arr1 = [], arr2 = []) => { let filtered = []; filtered = arr1.filter(el => { const index = arr2.indexOf(el); // index -1 means element is not present in the second array return index === -1; }); return filtered; }; console.log(filterUnwanted(arr1, arr2));
출력
콘솔의 출력은 -
[2, 4]