function Wall(){ this.color = "red"; } function Room(){ Wall.apply(this, arguments) this.size = "small"; } console.log("Room color", Room.color);