Chrome returns valid date for string "FY 2000" instead of invalid date while others browsers are correctly returning "invalid date"
Fiddle link: https://jsfiddle.net/Lddr79ek/
Code:
function isDate(value)
{
return new Date(value).toString()!= "Invalid Date");
}
is this an issue in chrome browser ?
Edit The problem is the reported behavior breaks our product only in chrome browser. I checked other answers in SO but they are also not working in chrome.