I have an array of objects of this type
Obj = { timeEnd:"06:45 AM",
timeStart:"04:23 AM"
}
Array is of type [obj1,obj2, ....] of particular day.
This array defines that how much time is spend on activities.
I want to recreate or transform this array into time wise array like
obj = { '4-5 AM' : 37,
'5-6 AM' : 60,
'6-7 AM' : 45
}
I have tried to search could not help. I am a noob.
Please let me know if you need any other info. Ultimate goal is to create a hourwise chart.js graph