1 2 3 4 5 6 7
function Foo() { this.x = 123; } var foo = new Foo(); if (foo.x === 123) console.log("PASS");