mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
108 B
JavaScript
8 lines
108 B
JavaScript
function Point(x, y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
var p = new Point(23, 42),
|
|
q = new Point(56, 72);
|