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

229
Views
Convery JS Object a matriz: mantenga la clave y el valor

Estoy tratando de convertir un objeto (updatedConfig) en una matriz (configArray), mientras mantengo la misma estructura (y evito anidar más).

Intenté declarar una nueva constante de matriz y usar Object.entries para presionar las claves y los valores. Puedo obtener las claves, pero tengo problemas para descubrir cómo lograr el anidamiento de la matriz.

 const configArray = []; Object.entries(updatedConfig).forEach(([key, value]) => { configArray.push(key); })

Aquí está el objeto en cuestión: ingrese la descripción de la imagen aquí

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

0

Puedes probar algo como esto usando Object.entries y Array.map

 const configObject = { key1: 'value', key2: 1, key3: [1, 2, 3] } const configArray = Object.entries(configObject).map(([key, value]) => ({key, value})) console.log(configArray)

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!