I have an array of objects each containing an ID and timestamp like so:
var data = [
{
id: 1,
date: '2015-01-01T00:00:00Z'
},
{
id: 2,
date: '2015-01-03T03:00:00Z'
},
{
id: 3,
date: '2015-01-03T09:00:00Z'
},
{
id: 4,
date: '2015-01-05T00:00:00Z'
},
]
I want to chart the quantity of these objects by hour and day. So I need to know how many have a timestamp between 00:00 and 01:00, 01:00 and 02:00, etc. Likewise, I need to find how many have a timestamp between 2015-01-03 and 2015-01-04, etc.
My first instinct is to loop over the hours of the day/days of the week and within that, loop again over the rows in the table and
if (val.date() >> hourIterator && val.date() << (hourIterator + 1)) {
new_array.push(val)
}
Am I going about this the right way?
JavaScript date instance have a function
.getTime()
to get number of milliseconds, for more http://www.w3schools.com/jsref/jsref_gettime.asp