Hello!
I jsut have question about associative array:
Now I know "date" and "test" are the "IDs" of the values.Code:var dataObject = {date:date, test:temp};
Is it possible to make the IDs dynamic?
Like:
Code:var names = ["test1", "test2"]; var dataObject1 = {date:date, names[0]:temp1}; var dataObject2 = {date:date, names[1]:temp2};


Reply With Quote
Bookmarks