“Найти дубликаты объектов в массиве JS” Ответ

Найти дубликаты объектов в массиве JS


let arr = []
arr.push({place:"here",name:"stuff"});
arr.push({place:"there",name:"morestuff"});
arr.push({place:"there",name:"morestuff"});


arr = arr.filter((value, index, self) =>
                 // return if the index if the matched innerr iteration matches the index of the outer iterator
  index === self.findIndex((t) => (
    t.place === value.place && t.name === value.name
  ))
)
eje sunday

Найти дубликаты объектов в массиве JS

let arr = []
arr.push({place:"here",name:"stuff"});
arr.push({place:"there",name:"morestuff"});
arr.push({place:"there",name:"morestuff"});


arr = arr.filter((value, index, self) =>
// return if the index if the matched innerr iteration matches the index of the outer iterator
  index === self.findIndex((t) => (
    t.place === value.place && t.name === value.name
  ))
)
eje sunday

Ответы похожие на “Найти дубликаты объектов в массиве JS”

Вопросы похожие на “Найти дубликаты объектов в массиве JS”

Больше похожих ответов на “Найти дубликаты объектов в массиве JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования