mirror of
https://github.com/github/codeql.git
synced 2026-06-03 20:55:56 +02:00
8 lines
104 B
JavaScript
8 lines
104 B
JavaScript
function Point(x, y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
var p = new Point(23, 42),
|
|
q = Point(56, 72);
|