function(){
var currentDate = new Date();
var twentyFourHours = 24*60*60*1000;
var limit = currentDate - twentyFourHours;
aModel.find({where:{property:something, timeStamp:{gt:limit}}},function(err,models){
models.forEach(function(oneModel){
console.log(oneModel.timeStamp);
//Tue Apr 05 2016 19:48:03 GMT+0000 (UTC)
//no ms resolution
});
}
}
function(){
var currentDate = new Date();
v