“Temukan objek duplikat di array js” Kode Jawaban

Temukan objek duplikat di array 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

Temukan objek duplikat di array 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

Jawaban yang mirip dengan “Temukan objek duplikat di array js”

Pertanyaan yang mirip dengan “Temukan objek duplikat di array js”

Lebih banyak jawaban terkait untuk “Temukan objek duplikat di array js” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya