0 votes
in JavaScript by
To retrieve the day of the month from the Date object, which is the code to select?

var date_obj = new Date(2016,1,1);

month_date = date_obj.toDateString();

month_day = date_obj.getDay();

month_date = date_obj.getMonth();

var month_day = date_obj.getDate();

1 Answer

0 votes
by
var month_day = date_obj.getDate();
...