javascript 'this' object
var Point = new function(x,y){ this.x = x; this.y = y; }(1,1); console.log(Point.x);