Below is my JavaScript Object:
var data = {
'PropertyA': 1,
'PropertyB': 2,
'PropertyC': 3
};
When the property name is not determined until runtime like below, can I add further properties to the object?
var propName = 'Property' + someUserInput
//imagine someUserInput was 'Z', how can I now add a 'PropertyZ' property to
//my object?