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

198
Vistas
Compare two arrays of objects; If second object contains the same key/value as the first return the second's, if not add key/value from the first

Consider the following: We have two arrays, each with an object.

let users: [
  {
    "id": "some#"
    "name": "some name",
    "data": "somedata"
  }
],


let products: [
    {
      "product": "some#"
      "name": "abc",
    },
]

Essentially compare both objects, if the second object has the same property as the first, keep the second prop and value if not add the prop/value from the first.

So the output is :

{
  "id": "some#",
  "name": "abc",
  "data": "somedata"
}
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Try this:

if (!(users[0].name === products[0].name)) {
product[0].data = users[0].data
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

With the code below, for the data you have given, you can have that output you are looking for:

let users = [
  {
    id: "some#",
    name: "some name",
    data: "somedata"
  }
];

let products = [
  {
    product: "some#",
    name: "abc"
  }
];

for (key in users[0]) {
  if (products[0][key]) {
    users[0][key] = products[0][key];
  } else {
    continue;
  }
}
console.log(users);

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