how to convert names to initials

Solutions on MaxInterview for how to convert names to initials by the best coders in the world

showing results for - "how to convert names to initials"
Émeric
22 Jan 2020
1const initials = item
2    .FirstName
3    .charAt(0)
4    .toUpperCase() +
5  
6    item
7    .LastName
8    .charAt(0)
9    .toUpperCase();
10