[jQuery] setting options for objects

[jQuery] setting options for objects


This is a general javascript question really
I have three objects that are similar
         $.object1({
                  option1: "something",
                   option2: "something else",
option3: "unique 1",
         });
         $.object2({
                  option1: "something",
                   option2: "something else",
option3: "unique 2",
         });
What I want to do is set the default options for both objects once and
then add only the unique ones
can anyone give me a heads up on this?