In JavaScript, I\'ve created an object like so:
var data = { \'PropertyA\': 1, \'PropertyB\': 2, \'PropertyC\': 3 };
Is it poss
You can add as many more properties as you like simply by using the dot notation:
var data = { var1:'somevalue' } data.newAttribute = 'newvalue'
or:
data[newattribute] = somevalue
for dynamic keys.