반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- html
- 이탈리아
- Button
- Java
- 자바
- js
- vscode
- ArrayList
- CMD
- 테이블
- Eclipse
- date
- list
- table
- 문자열
- Maven
- Visual Studio Code
- Array
- 자바스크립트
- 배열
- json
- input
- windows
- javascript
- string
- IntelliJ
- 이클립스
- 인텔리제이
- Files
- CSS
Archives
- Today
- Total
목록DUP (1)
어제 오늘 내일
[Javascript] 배열 중복 제거하는 3가지 방법
Javascript의 배열에서 중복 되는 값을 제거하는 3가지 방법을 알아보도록 하겠습니다. 1. Set 2. indexOf(), filter() 3. forEach(), includes() 1. Set Javascript에서 Set 객체를 이용하면 중복없는 데이터를 표현할 수 있습니다. Set 객체의 이런 특징을 이용해서, 배열의 중복을 제거할 수 있습니다. const dupArr = [1, 2, 3, 1, 2]; const set = new Set(dupArr); const uniqueArr = [...set]; document.writeln(Array.isArray(uniqueArr)); document.writeln(uniqueArr); 위의 예제에서는 const set = new Set(dupA..
IT/Javascript
2020. 10. 21. 00:39