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 trialShifat 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
231,248 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,995 PointsNed Marafawi
7,995 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
231,248 PointsSteven Parker
231,248 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"),