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
Your log outputs GMT so you want to specify your timezone:
var doo = new Date("2011-09-24 EST");