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

Vic Mercier
Vic Mercier
3,276 Points

Why do I need the return statement in appendToLi function when I'm doing that?//See in the next step

function appendToLi(elementName,property,value){ const element = createElement(elementName,property,value); li.appendChild(element);

}

I think I need the return statement because when I am going to do that:appendToLi('label',"textContent","Confirmed").appendChild(createElement("input","type","checkbox")); :and when you use the appendChild, you need a reference from the node and without the return statement, I will get undefined ?

Am I right?

1 Answer

Steven Parker
Steven Parker
231,269 Points

You are correct. To be able to chain functions, the front function must return an object that has the next one as one of its methods.