My json object is
var myjson={ "elements" :[{},{},.....]};
Now I want to add some more elements with out disturbing the existing elements.
and I dont want to get use the old elements. I mean dont like this approach
var elements=myjson.elements;
elements=elements.concat(newelementslist);
Is there any other approach like
myjson.elements.append(newelementlist);
Please give me a simple solution.