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 trialdan cheng
Full Stack JavaScript Techdegree Student 11,596 Pointsto get body, i was using this and it doesnt work: const body = document.getElementByTagName('body');
i was using this to get body elem and it doesnt work: const body = document.getElementByTagName('body');
1 Answer
Ezra Siton
12,644 PointsThe getElementsByTagName() method returns a collection of an elements's child elements with the specified tag name, as a NodeList object. The NodeList object represents a collection of nodes. The nodes can be accessed by index numbers. The index starts at 0 (w3schools)
Correct code (Add index)
const body = document.getElementsByTagName("body")[0];
dan cheng
Full Stack JavaScript Techdegree Student 11,596 Pointsdan cheng
Full Stack JavaScript Techdegree Student 11,596 Pointsoh thats right! thanks a lot!