Hapus objek yang sama dalam daftar JSON JS

This was the best solution I could find that makes you able to filter on multiple values in you json object 

    array.filter((thing, index, self) =>
        index === self.findIndex((t) => (
        t.place === thing.place && t.name === thing.name // you can add more arguments here to filter more
      ))
    )

    //Other example
    array.filter((thing, index, self) =>
        index === self.findIndex((t) => (
        t.place === thing.place && t.name === thing.name && t.time === thing.time
      ))
    )
Elegant Eel