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 trialKelly Case
Full Stack JavaScript Techdegree Student 733 Pointsblue berry smoothie
Blueberry Smoothie question. Need some help on solving this one. Not sure what I am doing wrong. All help appreciated!
const flavor = "Blueberry";
const type = "Smoothie";
const price = "4.99";
const drink = `${flavor} ${type}: ${price};
1 Answer
Cameron Childres
11,820 PointsHi Kelly,
You're very close. You're just missing the final backtick at the end of the template literal and a dollar sign in front of ${price}. It may look a little strange to type $${price} at first, just remember that only the dollar sign directly touching the curly braces will be replaced -- if you want a dollar sign to appear in the string then you'll have to use two of them.
const drink = `${flavor} ${type}: ${price}`;
// produces "Blueberry Smoothie: 4.99"
const drink = `${flavor} ${type}: $${price}`;
// produces "Blueberry Smoothie: $4.99"
One other note, you'll need to change the price
variable from a string back in to a number like originally supplied -- the test won't accept your code otherwise.