In JavaScript, I\'ve created an object like so:
var data = { \'PropertyA\': 1, \'PropertyB\': 2, \'PropertyC\': 3 };
Is it poss
Definitely. Think of it as a dictionary or associative array. You can add to it at any point.