I have five json objects obj1 ,obj2,obj3,obj4 and obj5, i want to merge them and crete a single json object and obj have same columns. The resultant json should have all the values from all objects
Question:
var obj1 = {
"DOP":"manu",
"Resolution":23,
"sensor":"SE"
}
var obj2 = {
"DOP":"mansa",
"Resolution":22,
"sensor":"PS"
}
like that all five object data and results should update only rows not as columns and expected result should be
var result = {
"Dop":["manu","mansa"],
"Resolution":[23,25],
"Sensor":["SE","PS"]
}