I have a bunch of objects, each of which has a timestamp, that I want to group by date, into a JSON object. The ultimate goal is something like this:
myObject =
var today = new Date(); var year = today.getFullYear(); var mes = today.getMonth()+1; var dia = today.getDate(); var fecha =dia+"-"+mes+"-"+year; console.log(fecha);