특정 순서가 없는 문자를 포함하는 두 개의 문자열이 있다고 가정해 보겠습니다. 이 두 문자열을 받아서 첫 번째 문자열에 있던 모든 문자가 생략된 두 번째 문자열의 수정된 버전을 반환하는 함수를 작성해야 합니다.
다음은 우리의 문자열입니다 -
const first ="hello world"; const second ="안녕하세요";
다음은 두 번째 −
에서 첫 번째 문자열의 모든 문자를 제거하는 함수입니다.const removeAll =(첫 번째, 두 번째) => { const newArr =second.split("").filter(el => { return !first.includes(el); }); return newArr.join("");};
이 함수에 대한 코드를 작성해 봅시다 -
예시
const first ="hello world"; const second ="안녕하세요"; const removeAll =(첫 번째, 두 번째) => { const newArr =second.split("").filter(el => { return !first .includes(el); }); return newArr.join("");};console.log(removeAll(첫 번째, 두 번째));
출력
콘솔의 출력은 -
<예전