Friends,
I would like to calculate difference between two times. For example I have
var workedHours = '05:00:00';
var defaultWorkDay = '08:00:00';
So I'm needing to calc workedHours - defaultWorkDay and expect a '-03:00:00' result.
I've tried moment.js but with no success.
Do you have some suggestion?