I want to add multiple attributes to an existing object with existing attributes. Is there a more concise way than one line per new attribute?
myObject.name
Use jQuery library
jQuery.extend(myObject, { name : 'don', gender : 'male' });