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 trialSamuel Kleos
Front End Web Development Techdegree Student 13,307 PointsUncaught TypeError: li.appendChild is not a function
Why doesn't my for..in loop work here?
const taskList = document.querySelector('.list-container ul');
const listItems = taskList.children;
// Adding a remove button to a li item.
function addBtnRemove(li) {
let btnRemove = document.createElement('button');
btnRemove.className = 'remove';
btnRemove.textContent = "Remove";
li.appendChild(btnRemove);
}
// Adding a remove button to existing li items
for (let item in listItems ) {
addBtnRemove(item);
}
1 Answer
Steven Parker
231,172 PointsThe loop variable (item in this case) of a "for...in" loop will contain a stringified index for each item, but the addBtnRemove function apparently expects to get an element reference as an argument.
Did you perhaps mean to use "for...of" instead?
Samuel Kleos
Front End Web Development Techdegree Student 13,307 PointsSamuel Kleos
Front End Web Development Techdegree Student 13,307 PointsThat's fantastic, I just implemented it thank you.