You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// First, because we have the names separated by spaces, we can use the string .split(' ') method to put each name as its own index in a new array
// Then, we can return the 0th index of each array as a string to get the initials using template literals, and then use the string .toUpperCase() method to make each initial uppercase.