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 trialAlanis Chua
2,830 Pointsinterpolation and template literal
the line with interpolation ${} must be quoted with .
is optional on other string but is much more cleanse..
am i getting it right?
1 Answer
Steven Parker
231,198 PointsI think you're trying to show symbols which require special formatting and will not appear otherwise.
But a template literal must be enclosed with accents, otherwise known as "back-ticks". `
Example:
var name = "Joe"; // this is a normal string
alert(`My name is ${name}`); // this is a template literal
To learn how to format code, see the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. Or watch this video on code formatting.