My task involves working with an array of time objects that users will add. The array comprises values like this, with a generic example of "01:01:01" for each date value.
let timeObjects = ["01:01:01", "01:01:01", "01:01:01"];
The goal is to iterate through the array and calculate the total amount of time. In this case, the desired result would be "03:03:03". Despite searching for solutions, I have not yet found a way to achieve this. I am hoping someone familiar with date formatting can assist me. Just to provide context, I am using VueJS, MongoDB, and Express in my project.