####Date.parse(date)
Enhanced version of JavaScript’s native Date.parse()
If ‘date’ is a date in either ISO 8601, Microsoft’s date format,
or in any format the browser’s Date.parse() implementation supports, a Date value (integer) is returned (which can be turned into a date using the Date()constructor), otherwise NaN.
####Date.parseISO(date)
If ‘date’ is an ISO 8601 date, a date value is returned, otherwise NaN.
####Date.parseMsDate(date)
If ‘date’ is a date in Microsoft’s date format,
a date value is returned, otherwise NaN.