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 JavaScript Basics Working with Strings Write a Template Literal

jordan higgins
jordan higgins
1,997 Points

java

app.js
const flavor = "Blueberry";
const type = "Smoothie";
const price = 4.99;

const drink = `${flavor + }`;

1 Answer

Steven Parker
Steven Parker
229,644 Points

I'm not sure why you titled this question "java" — that's a different language entirely! For future postings, it's helpful if you clearly state a question or describe your issue in the body; and give it a meaningful title. You might want to take a look at this video about Posting a Question.

But in your template literal, you won't need the + signs, just any actual characters you want in the output, plus the variable names enclosed in ${}. You still need the rest of the variables in your string.