Answers for "how to convert names to initials"

0

how to convert names to initials

const initials = item
    .FirstName
    .charAt(0)
    .toUpperCase() +
  
    item
    .LastName
    .charAt(0)
    .toUpperCase();
Posted by: Guest on September-30-2021

Code answers related to "how to convert names to initials"

Code answers related to "Javascript"

Browse Popular Code Answers by Language