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

175
Views
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 answers
Answer question

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 Report

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 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!