Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Shifat Kabir
5,443 PointsProblem about children property
When I use that: const lis = listUl.children; Console give me that: Uncaught ReferenceError: listUl is not defined at app.js:9 But if I use that: const lis = document.getElementsByTagName('li'); Its work perfectly.
1 Answer

Steven Parker
220,378 PointsYou must define "listUl" first, before you can use it to reference the "children" attribute.
But your second solution saves a step and is more concise anyway.
Ned Marafawi
7,983 PointsNed Marafawi
7,983 PointsHi Steven,
How is the second solution of Shifat Kabir saves a step and is more concise? If you can elaborate, please so I can have an idea. Thanks!
Steven Parker
220,378 PointsSteven Parker
220,378 PointsThe single-line solution works because it gets a reference to the child elements directly (the "li" elements) and skips the need for a reference to the parent (the "listUl"),