They asked a question about objects and encapsulation in Javascript -- specifically how to write them such that the data was private.
Sigiloso
Encapsulation is grouping private and public members under a single name. Can be done through an object constructor, so every new object is a new instance of the original object/class with its methods. Or can be done through closure. e.g. - module pattern - singleton Pattern - revealing Module Pattern with each of these, the implementation remains private but there is public access available on an outputted object