I am using datepicker.js and it is returning a date object from the input.
Console[Log] Object (test.html, line 229)
date: 16
day: 4
month: 0
obj: Thu Jan 16 2014 00:00:00 GMT-0700 (MST)
__proto__: NaN
pick: 1389855600000
year: 2014
__proto__: Object
I need to create labels for the next inputs based on this information. How do I change this object into the following format
Jan 16
and then I am running a loop to create the inputs/labels so how do i increment that based on the user choosing a number from a drop down list. Essentially if the first date picked is Jan 16, then I need Jan 17, Jan 18 etc.