function Foo() { this.a = 2; this.b = function(a) { return this.a*a; }; } var obj = new Foo; alert([obj.a, obj.b(2)]);