Skip to content

Instantly share code, notes, and snippets.

@dmiro
Created May 11, 2013 18:06
Show Gist options
  • Select an option

  • Save dmiro/5560848 to your computer and use it in GitHub Desktop.

Select an option

Save dmiro/5560848 to your computer and use it in GitHub Desktop.
Validate date
var isValidDate = function(d) {
if (Object.prototype.toString.call(d) !== "[object Date]") return false;
return !isNaN(d.getTime());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment