In my Java Script app I have the date stored in a format like so:
2011-09-24
Now when I try using the above value to create a new Date obje
if you need a simple solution for this see:
new Date('1993-01-20'.split('-'));