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

Getting Started With ES2015 Please fill in the correct answer in each blank provided below.

Please Help! Stuck on this question of the ES2015 Quiz. What's wrong with my answer?

let htmlBlock = "Bob"; <ul> <li>item 1</li> <li>item 1</li> <li>item 1</li> </ul>Hello ${htmlBlock}!;

let htmlBlock = `
<ul>
 <li>item 1</li>
 <li>item 1</li>
 <li>item 1</li>
</ul>`

1 Answer

Steven Parker
Steven Parker
229,732 Points

The question that has the multi-line template literal just needs the blanks filled with the proper character, which would be an accent (or "back-tick") :point_right: `

There's no name involved in that question.