Variables with thisbecome publicvariables, and those with which varbecome variables private.
, this, , , . this, , new, .
:
function Foo() {
var bar = 'I am bar';
this.baz = 'I am baz';
}
var f = new Foo;
console.log(f.bar);
console.log(f.baz);
javascript . . , , var .
, this, , . , .