Skip to content

Instantly share code, notes, and snippets.

@zhuangya
Created March 23, 2012 06:00
Show Gist options
  • Save zhuangya/2167474 to your computer and use it in GitHub Desktop.
Save zhuangya/2167474 to your computer and use it in GitHub Desktop.
function checkDate(date) {
"use strict";
if (/\d{4}-\d{2}-\d{2}/.test(date)) {
var _date = new Date(date).toString();
if (_date === "NaN" || _date === "Invalid Date") {
return "Invalid Date";
} else {
return true;
}
} else {
return "Wrong Format";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment