mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 20:30:58 +00:00
8 lines
103 B
JavaScript
8 lines
103 B
JavaScript
|
|
function Foo() {
|
||
|
|
this.x = 123;
|
||
|
|
}
|
||
|
|
|
||
|
|
var foo = new Foo();
|
||
|
|
if (foo.x === 123)
|
||
|
|
console.log("PASS");
|