Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Greg Kaleka
39,019 PointsString interpolation bug in this video
Just a quick note about a line of code in this video that introduces a bug. I know it's just an example, and the bug is incredibly minor, but I can't help myself . The line of code:
return "\(firstName) \(middleName ?? "") \(lastName)"
Anyone see what the problem is? If middleName
is nil
, we'll end up with firstName lastName, with two spaces. Here's a fix:
return "\(firstName) \(middleName != nil ? middleName! + " " : "")\(lastName)"
We check to see if middleName
isn't equal to nil
: if it's not, we add it plus a space, if it is nil
, we add an empty string. importantly, we do not include a space between this statement and lastName
.
1 Answer

James Estrada
Full Stack JavaScript Techdegree Student 25,862 PointsActually you only need to remove the space in between the last parenthesis of middleName and the beginning of lastName from the original string interpolation, like this:
return "\(firstName) \(middleName ?? "")\(lastName)"

Greg Kaleka
39,019 PointsThis works if there's no middle name, but if a middle name does exist, you'll end up with "James AwesomeEstrada".
jcorum
71,816 Pointsjcorum
71,816 PointsGood catch. Nice fix!