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 trialbig Holley
9,792 Pointswhy is my loop broken
i used this fuction but its displaying the animals 1, 12, 123, 1234.
let html ='';
for (var i = 0; i < pets.length; i++ ){
let pet = pets[i];
html +=
<h2>name:${pet.name} </h2>
<h3>type: ${pet.type} | ${pet.breed}</h3>
<p>age: ${pet.age}</p>
<img src="${pet.photo}" >
;
console.log(html);
document.querySelector("main").insertAdjacentHTML("beforeend", html);
}
1 Answer
Steven Parker
231,236 PointsThe closing brace for the loop ("}") seems to be missing. Also, the "pets" array isn't defined here.
And for future questions, make your code more readable by using Markdown formatting.