I have two JSON objects, and I want to append newData
into existingData.
existingData = {"School Name" : "Albert"}
newData = {"Teacher Name" : "Ms. Mithcell"}
This is the output I want:
existingData = {"School Name" : "Albert" , "Teacher Name" : "Ms. Mithcell"};
How can I do this?