summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/constructor-basic.js
blob: 9e2e1233ea4637cfedb2a99ee2e118506a9c0ed6 (plain)
1
2
3
4
5
6
7
function Foo() {
    this.x = 123;
}

var foo = new Foo();
if (foo.x === 123)
    console.log("PASS");