I probably am using the wrong terminology here but this is what I'm trying to do. I want to create a map with a value for each key and a value for each key's object. So using this code:
var myMap = {};
var keyVal = "abc";
var objVal = "123";
myMap.keyVal = objVal;
Now what I want to return is a JSON object that looks like {"abc":"123"} but instead it returns {"keyVal":"123"}. How can I get it to use the actual variable contents for the key instead of the variable name? (or really I guess it's not using the variable at all, just treating 'keyVal' as the key name)