i am using date.js to parse date in my javascript code
i just found an issue where i pass in
“12 Aug 2011” into a Date.Parse() method and it returns August 1, 2011.
here is a screenshot of the input string (as you can see i am passing in “12 Aug 2011”):

and here is a screenshot of the output date after the parse (as you can see it thinks its Aug 1 2011):

Is there anything i am doing wrong here or is this a bug in the library
looks like i have to use parseExact()