Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

remove duplicates objects from an array of objects using javascript

// remove duplicates objects from an array of objects using javascript
let arr = [
  {id: 1, name: 'Chetan'},
  {id: 1, name: 'Chetan'},
  {id: 2, name: 'Ujesh'},
  {id: 2, name: 'Ujesh'},
];
let jsonArray = arr.map(JSON.stringify);
console.log(jsonArray); 
/* 
[
  '{"id":1,"name":"Chetan"}',
  '{"id":1,"name":"Chetan"}',
  '{"id":2,"name":"Ujesh"}',
  '{"id":2,"name":"Ujesh"}'
]
*/

let uniqueArray = [...new Set(jsonArray)].map(JSON.parse);
console.log(uniqueArray);
/* 
[ { id: 1, name: 'Chetan' }, { id: 2, name: 'Ujesh' } ]
*/
Source by www.javascripttutorial.net #
 
PREVIOUS NEXT
Tagged: #remove #duplicates #objects #array #objects #javascript
ADD COMMENT
Topic
Name
8+6 =