I have an object called "themesData".
var themesData = {}
themesData.a = { key: "value" }; themesData.b = { key: "another value"};
and I want to access one of the members by its name - I get a string which contains either "a" or "b" and I want to get the appropriate member's value.
I'd be happy to get some help on that. Thanks!