Say you have a javascript object like this:
var data = { Name: 'Property Name', Value: '0' };
You can access the properties by the property name:
var name = data.Name;
var value = data["Value"];
But is it possible to get these values if you don't know the name of the properties? Does the unordered nature of these properties make it impossible to tell them apart?
In my case I'm thinking specifically of a situation where a function needs to accept a series of name-value pairs, but the names of the properties may change.
My thoughts on how to do this so far is to pass the names of the properties to the function along with the data, but this feels like a hack. I would prefer to do this with introspection if possible.