Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Rushabha Jain
Full Stack JavaScript Techdegree Student 11,140 PointsWhat is encapsulation?
Encapsulation is assigning object to a variable am i correct?
1 Answer

Neil Ricci
7,560 PointsEncapsulation describes consolidating an object’s properties and methods into a package and attaching it to a variable.
John Meade
8,267 PointsJohn Meade
8,267 PointsEncapsulation, in the broad sense that this video seems to be intending, is simply the ability to take related information (in this case properties and methods) and store them in a single unit (object). Often the word encapsulation comes up when talking about controlling how information or methods are accessible or kept private within the object; but that piece of it will come later in the course I'm sure.