function TestConstructor(){ this.sproperty='alala'; } function TestObject(){ this.PROPERTY = new TestConstructor(); } var testObject = new TestObject(); console.log(testObject.PROPERTY.sproperty);