1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
var list = [{"name":"사과", "id":"a1"},{"name":"배", "id":"a2"},{"name":"사과", "id":"a1"},{"name":"바나나", "id":"a3"}......] ;
var resultArray = []; // 카운팅해서 반환할 결과값 배열
list.map(item => {
//for each item in arrayOfObjects check if the object exists in the resulting array
if(resultArray.find(object => {
if(object.Name === item.Name && object.id === item.id) {
//if the object exists iterate times
object.cnt++;
return true;
//if it does not return false
} else {
return false;
}
})){
} else {
//if the object does not exists push it to the resulting array and set the times count to 1
item.cnt = 1;
resultArray.push(item);
}
});
|
cs |
배열안에 중복된 객체를 제거하고 중복된 객체가 몇개인지 세는 방법.
'Yame Programmer > Java Script[JQuery]' 카테고리의 다른 글
[JS] IE에서 개체가 'find' 속성이나 메서드를 지원하지 않습니다. (0) | 2021.02.19 |
---|---|
javascript 배열안의 객체 이름순 정렬 (0) | 2021.01.08 |
[제이쿼리] form의 내용을 한번에 오브젝트로 만들기 (0) | 2018.05.09 |
[자바스크립트] 자바스크립트 다국어 적용 방법 (0) | 2017.08.07 |
YYYYMMDD 형식 날짜 구하기 (0) | 2016.12.28 |