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 Getting Started With ES2015 Using Template Literals Review Template Literals

Help me please to fill this gap

Take the following code: const name = "Dave"; let message = "Hello " + name + ". How are you?";

And fill in the blanks below to recreate it using template literal interpolation: const name = "Dave"; let message = Hello . How are you?__

1 Answer

Steven Parker
Steven Parker
229,771 Points

Here's some hints:

  • template literals start and end with "backtick" characters :point_right: `
  • variable contents are represented by the variable name preceded by $ and enclosed in braces {}

And here is an example:

var num = 3;
var msg = `There are ${num} boxes here.`;
Steven Parker
Steven Parker
229,771 Points

Show the answer that you are giving now. Because of the special characters, you'll probably need to format it as code (as I did in the example above). Use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.