javascript days in current month code example
Example 1: how to get the number of days in a month in javascript
// instantiate a date object
var dt = new Date();
// dt.getMonth() will return a month between 0 - 11
// we add one to get to the last day of the month
// so that when getDate() is called it will return the last day of the month
var month = dt.getMonth() + 1;
var year = dt.getFullYear();
// this line does the magic (in collab with the lines above)
var daysInMonth = new Date(year, month, 0).getDate();
Example 2: js get day month year
const d = new Date();
d.getMonth() + 1; // Month [mm] (1 - 12)
d.getDate(); // Day [dd] (1 - 31)
d.getFullYear(); // Year [yyyy]
Example 3: get current month of year in number javascript
var today = new Date();
var month = today.getMonth(); // Returns 9
console.log(month); // Output: 9