Can additional object properties in coffeescript/javascript be added dynamically to an existing object?
For example:
var fred = { name: "Fred", species: "Sub-Human" };
Now later, for example, I want to add college major to get this:
{ name: "Fred", species: "Sub-Human", major: "Computer Science" }
And... how does this affect, or does it affect performance?