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 trialMatias Ikonen
523 PointsConvert the set of concatenated strings assigned to the drink variable to a template literal.
Convert the set of concatenated strings assigned to the drink variable. should be "Blueberry Smoothie: $4.99". template
const flavor = "Blueberry";
const type = "Smoothie";
const price = 4.99;
const drink = `${flavor} ${type}:$${price}.`
2 Answers
Dimitar Dimitrov
11,800 PointsThere must be space between : and the price
const drink = `${flavor} ${type}: $${price}`;
James Barshaw
4,167 PointsI have tried this answer in many ways and it doesn't work
Robert McCandless
2,703 PointsSame here. I have tried it everyway that every person has posted and nothing works. Maybe there is a issue with the workspace?
Matias Ikonen
523 PointsMatias Ikonen
523 PointsI get this messsage Bummer: Make sure you're including
: $
immediately aftertype
and beforeprice
.