In object array i have multiple objects in nested array, each object has its own value of time e.g ""call_duration": "0:21"" ,I want to add all the times and display it in proper time format from HTML side. Array is
[
{
"phone_number": "1905",
"interactions": [
{
"agentId": "hassan1",
"call_duration": "0:21"
},
{
"agentId": "shabber",
"call_duration": "1:22"
}
]
}
]
I want to add those call duration and display the final time, all the things should be handle in HTML