Я объединяю несколько массивов в один массив.Это хорошо работает
this.facetsLocations = [].concat(
response.facets['134_locations'].terms,
response.facets['135_locations'].terms
);
Но вывод не то, что я хочу.Как вы видите, у меня такие же термины, как «deutschland», count: 6 «deutschland», count: 4 и т. Д.
результат должен быть один «deutschland», count 10, я хочу проверить, еслизначение уже существует и добавьте значения счетчика.
(11) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
0: {term: "deutschland", count: 6}
1: {term: "basel", count: 3}
2: {term: "osteuropa", count: 2}
3: {term: "österreich", count: 1}
4: {term: "ungarn", count: 1}
5: {term: "schweiz", count: 1}
6: {term: "basel", count: 5}
7: {term: "deutschland", count: 4}
8: {term: "österreich", count: 1}
9: {term: "ungarn", count: 1}