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 Object-Oriented JavaScript (2015) Constructor Functions and Prototypes Making the UI Work

is "this" in JavaScript prototypes, what "this" in jQuery is built on?

Just wondering...

1 Answer

Steven Parker
Steven Parker
230,946 Points

:point_right: The function of this is built into JavaScript.

It doesn't matter if you are using JQuery or not, the meaning of this is determined by context in which it is used. For examples, inside an object method it will be the object itself, or inside an event handler it will be the element that triggered the event.

Thanks, I pretty much get that part. I was thinking if you looked behind the scenes of a jQuery $(this) would you see some conglomeration of JS prototypes. Cause up until prototypes, I haven't seen "this" in JS, that I can recall anyway.