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

216
Views
JavaScript object inside Multiple array merge

I have one object inside the object list of array values, I want to merge the object value Thanks for Help

const List = {
    school1: [{studentname:'1'},{studentname:'2'}]
    school2: [{studentname:'21'},{studentname:'22'}] 
    school3: [{studentname:'31'},{studentname:'32'}]
}

Trying Get like this 
const List = [{studentname:'1'},{studentname:'2'},{studentname:'21'},{studentname:'22'},{studentname:'31'},{studentname:'32'}]





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

0

You can use Object.values() and Array.flat() to get the desired result:

const List = {
    school1: [{studentname:'1'},{studentname:'2'}],
    school2: [{studentname:'21'},{studentname:'22'}], 
    school3: [{studentname:'31'},{studentname:'32'}]
}

const result = Object.values(List).flat();
console.log('Result:', result)

    
.as-console-wrapper { max-height: 100% !important; }

about 4 years ago · Juan Pablo Isaza Report

0

var a = {
    a1: [{name:'s1'}, {name: 's2'}],
    a2: [{name:'s3'}, {name: 's4'}],
    a3: [{name:'s5'}, {name: 's6'}],
}
var list = [];
Object.keys(a).forEach(x => {list = [...list, ...a[x]]})
console.log(list)

about 4 years ago · Juan Pablo Isaza Report

0

Brute force solution:

const List = {
    school1: [{studentname:'1'},{studentname:'2'}],
    school2: [{studentname:'21'},{studentname:'22'}],
    school3: [{studentname:'31'},{studentname:'32'}]
}

let List2 = [];
for(let i of Object.values(List)){
    List2.push(i)
}
console.log(List2)

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!