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

146
Views
how to show fullname in javascript?

this is my code javascript i do not know where the problem is ? it is just displaying first name ?

// 
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

The comma does not concatenate the strings. Use the +operator for this. Also don't forget to add a space in between.

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!