Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

147
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda