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();

Related questions

0 votes
asked May 2 in AWS by DavidAnderson
+2 votes
asked Jan 20, 2021 in C Plus Plus by SakshiSharma
...