I am new to javascript. i want to parse this response .
var date=[];
   var details=[];
    for(post in resulttable.posts){
      date=date.concat(resulttable.posts[post].days.Date);
      details= details.concat(resulttable.posts[post].days.details);
    }
I dont know where am missing. please help me , I want those details in one array and dates to be another array.
{
    "status": 1,
    "count": 2,
    "posts": [{
        "days": {
            "details": [{
                "place": "labs",
                "StartTime": "01:00:00",
                "EndTime": "02:00:00",
                "Description": "Meeting with team",
                "participants": [{
                    "Name": "KK",
                    "Designation": "VP, Operations",
                    "ContactNumber": "111"
                }, {
                    "Name": "MN1",
                    "Designation": "Project Lead",
                    "ContactNumber": "111"
                }]
            }],
            "Date": ["2017-02-02"]
        },
        "name": "test"
    }, {
        "days": {
            "details": [{
                "place": "India",
                "StartTime": "01:00:00",
                "EndTime": "03:00:00",
                "Description": "Agenda1",
                "participants": [{
                    "Name": "Kk",
                    "Designation": "VP, Operations",
                    "ContactNumber": "11111"
                }, {
                    "Name": "MN",
                    "Designation": "Project Lead",
                    "ContactNumber": "111"
                }]
            }, {
                "place": "microsoft",
                "StartTime": "01:00:00",
                "EndTime": "02:00:00",
                "Description": "Meet CEO",
                "participants": [{
                    "Name": "VR",
                    "Designation": "Project Lead",
                    "ContactNumber": "111"
                }]
            }, {
                "place": "microsoft",
                "StartTime": "01:00:00",
                "EndTime": "02:00:00",
                "Description": "Meet CEO",
                "participants": [{
                    "Name": " VR",
                    "Designation": "Project Lead",
                    "ContactNumber": "111"
                }]
            }, {
                "place": "Formule",
                "StartTime": "10:50:00",
                "EndTime": "11:50:00",
                "Description": "Meet Rajesh",
                "participants": [{
                    "Name": "MN",
                    "Designation": "Project Lead",
                    "ContactNumber": "111"
                }]
            }, {
                "place": "Dell",
                "StartTime": "04:00:00",
                "EndTime": "08:00:00",
                "Description": "Agenda 2",
                "participants": [{
                    "Name": "MN",
                    "Designation": "Project Lead",
                    "ContactNumber": "1111111"
                }]
            }],
            "Date": ["2017-02-03"]
        },
        "name": "test"
    }]
}
 
     
    