var obj1 = {propA:"test"}; var obj2 = {propB:"ololo"}; obj1.__proto__ = obj2; alert(obj1.propA); alert(obj1.propB);