Last active
August 19, 2020 17:51
-
-
Save atembamanu/4b13e8a975ff12703ed44f5505b90b90 to your computer and use it in GitHub Desktop.
Count duplicates within an Array of Objects, return Unique Entries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = [ | |
{ a: { animal: "dog" } }, | |
{ a: { animal: "dog" } }, | |
{ b: { animal: "dog" } }, | |
{ a: { animal: "dog" } }, | |
{ b: { animal: "puppy" } }, | |
{ c: { animal: "dog" } }, | |
]; | |
function countDuplicates(originalArray) { | |
var compressedArrayData = []; | |
const arrayCopy = originalArray.slice(0); | |
for (var i = 0; i < originalArray.length; i++) { | |
var counter = 0; | |
for (var j = 0; j < arrayCopy.length; j++) { | |
let originalArrayItemKey = Object.keys(originalArray[i])[0]; | |
let arrayCopyItemKey = Object.keys(arrayCopy[j])[0]; | |
if (originalArrayItemKey === arrayCopyItemKey) { | |
counter++; | |
} | |
} | |
if (counter > 0) { | |
var revisedFormat = new Object(); | |
revisedFormat.value = originalArray[i]; | |
revisedFormat.validName = Object.keys(originalArray[i])[0]; | |
revisedFormat.count = counter; | |
compressedArrayData.push(revisedFormat); | |
} | |
} | |
return compressedArrayData; | |
} | |
const validatedValues = countDuplicates(data); | |
console.log(validatedValues); | |
//Get unique pairs | |
//Here i have used validName to filter | |
let uniqueAssignment = validatedValues.filter( | |
(uniqueAssignment, index, self) => | |
index === | |
self.findIndex( | |
(t) => | |
t.validName === uniqueAssignment.validName && | |
t.validName === uniqueAssignment.validName | |
) | |
); | |
console.log(uniqueAssignment); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🥳🥳🥳🥳🥳🥳🥳