“Znajdź zduplikowane obiekty w tablicy JS” Kod odpowiedzi

Znajdź zduplikowane obiekty w tablicy 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

Znajdź zduplikowane obiekty w tablicy 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

Odpowiedzi podobne do “Znajdź zduplikowane obiekty w tablicy JS”

Pytania podobne do “Znajdź zduplikowane obiekty w tablicy JS”

Więcej pokrewnych odpowiedzi na “Znajdź zduplikowane obiekty w tablicy JS” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu