I'm outputting the user's First+Last name by using: =current_user.try(:first_name)+" "+current_user.try(:last_name)
However, if they're both nil, I get an error for trying to add a space between two nil values.
What's a better way to handle this issue??