I have two arrays of different time string.
startingTime: string["09:00:00", "5:50:00", "6:30:00"];
duration: string["0:15:00", "01:00:00", "01:00:00"];
I want to sum these arrays in final like
endingTime: string ["09:15:00", "6:50:00", "7:30:00"]
I'm building Single page application using angular 7,trying to use momentjs but not sure how to implement it. I would appreciate any help.