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 Jan 8 in Selenium by SakshiSharma
0 votes
asked Jan 24, 2021 in JAVA by rajeshsharma
...