Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizKindly log in to use this feature. We’ll take you to the login page automatically.
LoginGeneral Tech Bugs & Fixes 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
One solution is to use Array.reduce() to create two sets, one with the tags and other with the weights. After this you can transform the sets to arrays and use Array.sort() on they:
const arr = [ { tags: ['f', 'b', 'd'], weight: 7, something: 'sdfsdf' }, { tags: ['a', 'b', 'c', 'd', 'e'], weight: 6, something: 'frddd' }, { tags: ['f', 'c', 'e', 'a'], weight: 7, something: 'ththh' }, { tags: ['a', 'c', 'g', 'e'], weight: 5, something: 'ghjghj' } ]; let res = arr.reduce((acc, {tags, weight}) => { acc.tags = new Set([...acc.tags, ...tags]); acc.weights.add(weight); return acc; }, {tags: new Set(), weights: new Set()}); let sortedWeigths = [...res.weights].sort(); let sortedTags = [...res.tags].sort((a, b) => a.localeCompare(b)); console.log("weights: ", sortedWeigths, "tags: ", sortedTags);.as-console {background-color:black !important; color:lime;} .as-console-wrapper {max-height:100% !important; top:0;}
You could use the following code. This basically splits arr up into finalTags and finalWeights.
.flat() flattens the array ([1, [2, [3]]] would become [1, 2, 3])
And finally, [...new Set(finalTags)].sort() gets rid of duplicates and sorts the array.
const arr = [{
tags: ['f', 'b', 'd'],
weight: 7,
something: 'sdfsdf'
},
{
tags: ['a', 'b', 'c', 'd', 'e'],
weight: 6,
something: 'frddd'
},
{
tags: ['f', 'c', 'e', 'a'],
weight: 7,
something: 'ththh'
},
{
tags: ['a', 'c', 'g', 'e'],
weight: f="https://forum.tuteehub.com/tag/5">5,
something: 'ghjghj'
}
];
let finalTags = arr.map(e => e.tags);
finalTags = finalTags.flat();
finalTags = [...new Set(finalTags)].sort();
let finalWeight = arr.map(e => e.weight);
finalWeight = [...new Set(finalWeight)].sort();
console.log(finalTags);
console.log(finalWeight);
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Kindly log in to use this feature. We’ll take you to the login page automatically.
LoginReady to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
This is a smaller version of the array i have but it has the same structure
with const arr below, i want to create 2 new arrays with unique values that are sorted in ascending order