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 trialMOSHE SCHWIMMER
6,301 PointsRemoving a element, through querySelector, then selecting the element, and the .length
In this lesson he removes the last item with ‘last-child’, but he said that there in another way through, querySelector-tag-tag.length, Can someone please show me how?
1 Answer
Steven Parker
231,269 PointsWhat is said in the video is "we could select all the li elements with getElementsByTagName for example then find the length of the collection and use that to access the last element."
That could be done like this:
let items = document.getElementsByTagName("li");
let li = items[items.length - 1];
But this is clearly not as concise as the method shown in the video.