How to parse a string into a date object at JavaScript (without using any 3d party) that is at dd-MM-yyyy HH:mm (all of them numbers) format?
var p = "04-22-1980 12:22".split(/-|\s+|:/); // new Date(year, month, day [, hour, minute, second, millisecond ]) new Date(p[2], p[0] - 1, p[1], p[3], p[4]); // => Tue Apr 22 1980 12:22:00 GMT-0500 (Central Daylight Time)