I was able to parse date string in JavaScript using the following script:
var mydate = new Date(Date.parse('06/15/2012','MM/dd/yyyy'));
What really bothers me is that there is no proper documentation for the above method. MSDN, w3school and Mozilla developer sites have docs on one parameter only.
i.e., Date.parse('some date string');
What is the best JavaScript reference that has correct up to date information?