The typical way of creating a Javascript object is the following:
var map = new Object(); map[myKey1] = myObj1; map[myKey2] = myObj2;
I need to
Give this a try:
var map = {"aaa": "rrr", "bbb": "ppp"};