I am new to javascript. In javaScript i have to check the particular string is valid date or not. So i use Date.Parse("S.01.01.01"). But it was return the following answer (978287400000) instead of "S.01.01.01".I need to maintain this as "S.01.01.01". In C# DateTime.TryParse method can be used and this returns the proper validation for DateTime. But in javascript i have wrong result. How to solve this?
Regards, Pavithra K.