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

147
Views
¿Cómo mostrar el nombre completo en javascript?

este es mi código javascript no sé dónde está el problema? ¿solo muestra el nombre?

 // let people = [{ first_name: "Riche", last_name: "Aboubaker" }, { first_name: 'KADD', last_name: 'Missinsn' }, { first_name: 'laala', last_name: 'Jason' }, ] // create new array with the string full name of each person let fullNames = people.map((person) => { return person.first_name , person.last_name ; }); console.log(fullNames);

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

0

La coma no concatena las cadenas. Use el operador + para esto. Además, no olvides agregar un espacio en el medio.

 let people = [{ first_name: "Riche", last_name: "Aboubaker" }, { first_name: 'KADD', last_name: 'Missinsn' }, { first_name: 'laala', last_name: 'Jason' }, ] // create new array with the string full name of each person let fullNames = people.map((person) => { return person.first_name + ' ' + person.last_name ; }); console.log(fullNames);

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!