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 Loops Working with 'for' Loops Dynamically Display HTML with a Loop

Why does ${i} display instead of numbers in the circle divs?

Instead of numbers displaying in each of the circles, I get the symbols ${i}. Why does this happen? Here is my code:

const main = document.querySelector('main'); let html = '';

for (let i=0; i<=10; i++) { html += '<div>${i}</div>'; } main.innerHTML = html;

Thanks! Carmen

2 Answers

You are using single quotes instead of backticks in '<div>${i}</div>'. To use template literals, try using ` instead of '.

🙏 🙏 🙏 Thank you jb30! It took me another couple of minutes to locate the backticks on my keyboard but problem solved! Have a great weekend!