Posts by Felipe Miosso • 141 points
1 post
-
4
votes3
answers1220
viewsA: Get timestamp
You just need to add a gap to separate the date from the time. var data = "02/01/2015 "; var hora = "10:00:00"; var d = new Date(data + hora); d.getTime(); The method getTime returns timestamp in…