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

Kevin O'Donoghue
Kevin O'Donoghue
8,995 Points

Is this the correct usage of extending a class?

Hi,

I have made a mini dom manipulation library in codepen to test what I learned about js classes however after looking at the code it feels like a lot of boilerplate and wondered whether there is a better way to do what i'm doing.

https://codepen.io/matt3224/pen/wXZVgV?editors=0011

Any help much appreciated, Matt

1 Answer

Steven Parker
Steven Parker
229,608 Points

If you just wanted to practice class structures it looks like you did a good job. Otherwise, I'm not quite sure what you're after. If I wanted functionality like this, I'd just load jQuery.

One issue caught my eye: there's no "getElementsByID" (plural) method. Since ID's must be unique, there's only a "getElementById" method that returns a single element.