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 trialGreg Schudel
4,090 Pointswhy no quotations in datablock for appendChild() method?
Why is there no quotation in the appendChild() method below?
// function for creating item from bottom input tag
addItemButton.addEventListener('click', () => {
let ul = document.getElementsByTagName('ul')[0];
let li = document.createElement('li');
li.textContent = addItemInput.value;
ul.appendChild(li); // why no quotations like this 'li'?
});
Shouldn't it look like this?
ul.appendChild('li');
1 Answer
asd asdf
Courses Plus Student 298 PointsYes, if you were appending a li
to a ul
it would indeed be ul.appendChild('li');
, but in this case there is a variable li
that contains an ΛliΛ element, and you are appending whatever is stored in the variable.