Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript One Solution

How did he know to place planet.name inside like this ${planet.name}

Also how did he know where to start and end template literals

1 Answer

Steven Parker
Steven Parker
231,007 Points

The "$(...)" syntax creates a replacement token in a template literal. The entire thing gets replaced by the value of whatever is inside the braces.

And when replacing a concatenation sequence, the template literal starts where the first string (or value) started, and ends where the last string (or value) ended.