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

179
Vistas
quickest way to assign values of keys which are intersection in the target and source object

I want to assign only those keys which are already present in the target object and not the other keys that are done by the object.assign method.

example
a = { x: 2}
b = {x:3, y:4}

then result = {x:3}

I know there are other ways in past but is there any newer and better ways to do this like in one line?

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

You can reduce the keys of the target object to a new object by taking the values from the obj if they exist:

const fn = (target, obj) => Object.keys(target)
  .reduce((acc, key) => key in obj 
    ? { ...acc, [key]: obj[key] } 
    : acc
  , {})

const a = { x: 2}
const b = { x:3, y:4 }

const result = fn(a, b)

console.log(result)

about 4 years ago · Juan Pablo Isaza Denunciar

0

I think the fastest way is:

for (let key in b) {
  if (a[key] === undefined) {
    delete b[key];
  }
}
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