function Point(x, y) { this.x = x; this.y = y; } var p = new Point(23, 42), q = new Point(56, 72);