배열 두개를 비교해서 차집합을 찾으려고한다.
var arr1 = ["가","나","다","라","마","바"]
var arr2 = ["가","나","아"]
includetext는 배열 두개를 비교해 차집합의 결과를 찾아내는 것이고
noincludetext는 같은값은 제거해서 보는 값이다.
let includetext =arr1.filter(x => arr2.includes(x));
let noincludetext = arr1.filter(x => !arr2.includes(x));
반응형
'프로그래밍 언어 > Javascript' 카테고리의 다른 글
[Javascript MIME type]text/javascript와 application/javascript의 차이점 (0) | 2022.01.24 |
---|---|
datatables cdn 사용 코드 (0) | 2021.12.21 |
[jquery] jquery 시작하기 - document ready function (0) | 2021.09.29 |
dataTable 특정 열에만 정렬 없애기 (0) | 2021.09.28 |
dataTable 데이터 변경시 테이블 다시 그리기 (0) | 2021.09.28 |