example:
function Foo() { this.bla = 1; var blabla = 10; blablabla = 100; this.getBlabla = function () { return blabla; // exposes b
That variable is local to the constructor and won't be accessible outside of that scope (be it through this or otherwise), unless it is captured by a closure.
this