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

131
Views
how to convert multi element object to one element object

I have object like this

[
  { A: '1' },
  { B: '2' },
  { C: '3' },
]

I want convert to like this

{
  A: '1',
  B: '2',
  C: '3',
}

what is the best way to do it

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

0

  • Object.assign with spread syntax
let arr = [
  { A: '1' },
  { B: '2' },
  { C: '3' },
]

console.log(Object.assign(...arr));
about 4 years ago · Juan Pablo Isaza Report

0

let arr = [
  { A: '1' },
  { B: '2' },
  { C: '3' },
]

let output = {}

arr.map((obj) => {
    output = {...output, ...obj}
})

console.log(output)

about 4 years ago · Juan Pablo Isaza Report

0

Object.assign and spread operator will do the trick :

let arrObject = [
   { A: "1" }, 
   { B: "2" },
   { C: "3" }
]; 
  1. Object.assign(target, ...sources)

let obj = Object.assign({}, ...arrObject);

console.log(obj) => obj = { A: '1', B: '2', C: '3' }

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!