var table = {"abc":{0:0, 1:5, 2:0, 3:0, 4:0, 5:0, 6:0, 7:0, 8:0}};
This is my JSON array, I can access the data like this now: table["abc"][1]
Now, How do I append another element like abc
Something like this:
table.append({"xyz":{0:0, 1:5, 2:0, 3:0, 4:0, 5:0, 6:0, 7:0, 8:0}});