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
Related Q & A:
- How can you map the differences between Javascript objects?Best solution by Code Review
- How to remove first element in multidimentional array?Best solution by Stack Overflow
- How to post an array of complex objects (that has an array of complex objects) with jQuery?Best solution by Stack Overflow
- how can i remove an array from an array?Best solution by Stack Overflow
- How to get Javascript array length?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.