I have some json strings that look like that:
var TheJson = "{Key:[array of objects]}"
Key is actually a date and the json contains arrays of objects. I want to add this object to another object HistoryOfData, sort of like the .push method on arrays. Basically, I want the HistoryOfData object to have key value nested objects where the keys are dates and the values are arrays of data.
How do I push an object into another object?