How can I remove duplicate Objects from array of Objects in javascript?

Remove duplicate objects from javascript array

  • I have an array of objects var arr = [ {id: 1, name: 'Apple'}, {id: 1, name: 'Mango'}, {id: 2, name: 'Pear'}, {id: 2, name: 'Orange'} ]; How to make sure arr contains only unique objects?

  • Answer:

    Using https://developer.mozilla.org/es/docs/Web/JavaScript/Referencia/Objetos_globales/Array/filter. When into filter function returns true, the element is maintained. The temporary variable idsMemo is created to store and check if the id already exists. var arr = [{id: 1, name: 'Apple'}, {id: 1, name: 'Mango'}, {id: 2, name: 'Pear'}, {id: 2, name: 'Orange'}] var idsMemo = []; arr = arr.filter(function(obj){ return idsMemo.indexOf(obj.id) == -1 ? !!idsMemo.push(obj.id) : false }); document.write(JSON.stringify(arr))

user544079 at Stack Overflow Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.