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 Interacting with the DOM Traversing the DOM Getting All Children of a Node with children

Uncaught 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
Steven Parker
229,644 Points

The 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?

That's fantastic, I just implemented it thank you.