javascript get the first and last letter of first and last name code example
Example: js get initials from name
const fullName = nameString.split(' ');
const initials = fullName.shift().charAt(0) + fullName.pop().charAt(0);
return initials.toUpperCase();