Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

146
Views
How to get same value from array of objects using javaScript?

I have two arrays, my aim is to filter the second array arr2 by the first array arr1, and get only matched values where prid is the same as arr2 id, results should be let filtred = [ {name:'kiwi', color:'red', id:12123},{name:'kiwi', color:'red', id:12123}], how i can ichieve this using filter?

let arr1 = [
  {prid:12123},
  {prid:12124}
]

let arr2 = [
  {name:'kiwi', color:'red', id:12123},
  {name:'kiwi2', color:'blue',id:12129},
  {name:'kiwi3', color:'green',id:12124}
]

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Please note: According to your requirement your expected output is not correct:

You can try using Array.prototype.some() inside Array.prototype.filter() by matching the respective property value (prid of arr1 with id of arr2).

let arr1 = [
  {prid:12123},
  {prid:12124}
]

let arr2 = [
  {name:'kiwi', color:'red', id:12123},
  {name:'kiwi2', color:'blue',id:12129},
  {name:'kiwi3', color:'green',id:12124}
]

let filtred = arr2.filter(i => arr1.some(j => j.prid == i.id))
console.log(filtred);

about 4 years ago · Juan Pablo Isaza Report

0

You can use Array.prototype.reduce which allows to create another array with different structure

let arr1 = [
  {prid:12123},
  {prid:12124}
]

let arr2 = [
  {name:'kiwi', color:'red', id:12123},
  {name:'kiwi2', color:'blue',id:12129},
  {name:'kiwi3', color:'green',id:12124}
]

let results = arr2.reduce((accumulator, currentItem) =>{
  let itemExists = arr1.findIndex(item => item.prid === currentItem.id);
  return itemExists !== -1? accumulator.concat(currentItem): accumulator;
}, []);

console.log(results);

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!