I'm trying to get the date currently selected in the Datepicker. I was going through its API and saw a getDate() method, and it states it returns a Date object. When I clicked to read more about this Date object, it says "The Date type is a JavaScript object that represents a single moment in time, etc."
As I read on, there were no listing of this Date object's methods, and yet I don't think it's the standard JavaScript's Date object because I can't access the usual standard Date object methods with it.
Where can I get a listing of the methods/properties of this Date object? Thanks.