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

208
Views
Necesita separar una cadena particular de una matriz en javascript

tengo una salida como esta

Producción :

 [{service: 'xdc'},{service: 'cddc'}, {service: 'cdcd'},{service: 'cddc'}]

necesito convertir asi

salida: [xdc,cddc,cdcd,cddc]

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

0

Utilice Array.map():

 const output=[{service: 'xdc'},{service: 'cddc'}, {service: 'cdcd'},{service: 'cddc'}] const result = output.map(el => el.service) console.log(result)

about 4 years ago · Juan Pablo Isaza Report

0

Puede usar Array.prototype.map() combinado con la asignación de desestructuración

Código:

 const output = [{service: 'xdc'},{service: 'cddc'}, {service: 'cdcd'},{service: 'cddc'}] const result = output.map(({ service }) => service) console.log(result)

about 4 years ago · Juan Pablo Isaza Report

0

Puede usar el bucle forEach() simple en este caso:

 var data = [{service: 'xdc'},{service: 'cddc'}, {service: 'cdcd'},{service: 'cddc'}] var output = []; data.forEach(element => { output.push(element.service); }); console.log(output);

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!